Grafana5.1.3+InfluxDB搭建及配置

Grafana+InfluxDB搭建及配置

一、安装配置InfluxDB

[root@host-39-108-217-12 tools]# wget https://dl.influxdata.com/influxdb/releases/influxdb-1.2.4.x86_64.rpm
[root@host-39-108-217-12 tools]# yum localinstall influxdb-1.2.4.x86_64.rpm
[root@host-39-108-217-12 tools]# systemctl start influxdb.service

[root@host-39-108-217-12 tools]# ps -ef | grep influxdb
influxdb 14230     1  0 11:39 ?        00:00:00 /usr/bin/influxd -config /etc/influxdb/influxdb.conf
root     14251 24176  0 11:39 pts/1    00:00:00 grep --color=auto influxdb

[root@host-39-108-217-12 tools]# ss -tnulp | grep influxd
tcp    LISTEN     0      128      :::8086                 :::*                   users:(("influxd",pid=14230,fd=5))
tcp    LISTEN     0      128      :::8088                 :::*                   users:(("influxd",pid=14230,fd=3))

猜你喜欢

转载自blog.csdn.net/m0_37814112/article/details/80731474