• telegraf安装


    1、安装
    wget http://get.influxdb.org/telegraf/telegraf-0.11.1-1.x86_64.rpm
    yum localinstall telegraf-0.11.1-1.x86_64.rpm
    2、启动命令
    systemctl start telegraf
    3、配置文件
    vim /etc/telegraf/telegraf.conf
    -----------
    [[outputs.influxdb]]
       urls = ["http://localhost:8086"] #数据库地址
       database = "telegraf" #数据库名称
       retention_policy = "" #注意为空
       precision = "s"
       timeout = "5s"
       username = "telegraf" #用户
       password = "password" #密码
    -----------

  • 相关阅读:
    CentOS 6.x 系统安装选项说明
    MySQL表的操作
    6月13号
    6月11号
    6月10号
    6月9号
    6月6
    day27
    day 28
    day 29
  • 原文地址:https://www.cnblogs.com/lazy-sang/p/13372987.html
Copyright © 2020-2023  润新知