• Centos netdata 的安装及配置


    netdata安装

    安装环境准备

    yum install -y autoconf automake curl gcc git libmnl-devel libuuid-devel lm_sensors make MySQL-python nc pkgconfig python python-psycopg2 PyYAML zlib-devel
    

    netdata 安装

    # 下载源码,安装netdata
    cd /mnt/tools/
    git clone https://github.com/firehol/netdata.git --depth=1
    cd netdata
    
    # 使用root用户执行 进行编译、安装和启动
    ./netdata-installer.sh
    

    配置服务项

    # 复制netdata启动项到 /etc/init.d
    cp system/netdata-init-d /etc/init.d/netdata
    
    # 确保启动项可执行
    chmod +x /etc/init.d/netdata
    # 注册服务
    chkconfig --add netdata
    # 设置开机启动
    # Centos6
    chkconfig netdata on
    
    # Centos7
    systemctl enable netdata.service
    

    服务启动与停止

    Centos6

    service netdata start
    service netdata stop
    

    Centos7

    systemctl start netdata.service
    systemctl stop netdata.service
    

    访问网站

    http://ip:19999/
    http://127.0.0.1:19999/
    

    卸载netdata

    脚本netdata-installer.sh 会在安装时生成netdata-uninstaller.sh
    执行脚本来卸载

    cd /mnt/netdata
    ./netdata-uninstaller.sh --force
    
  • 相关阅读:
    JNday7-pm
    JNday7-am
    bzoj1047理想的正方形
    关于OI中简单的常数优化
    bzoj1050旅行
    bzoj1044木棍分割
    bzoj1875 HH去散步
    bzoj1059矩阵游戏
    bzoj2705Longge的问题
    bzoj1833数字计数
  • 原文地址:https://www.cnblogs.com/lusky/p/7025882.html
Copyright © 2020-2023  润新知