在Linux系统部署InfluxDB

来源:互联网 发布:c语言驱动写法 编辑:程序博客网 时间:2024/06/11 18:32

在Linux系统部署InfluxDB

1、下载安装包

influxdb-1.2.2.x86_64.rpm

2、安装

[root@localhost home]# rpm -ivh influxdb-1.2.2.x86_64.rpm

3、配置:开启web访问端口8083

[root@localhost home]# vim /etc/influxdb/influxdb.conf......[admin]# Determines whether the admin service is enabled.enabled = true# The default bind address used by the admin service.bind-address = ":8083".......

4、启动InfluxDB

[root@localhost home]# service influxdb startRedirecting to /bin/systemctl start influxdb.service注:如果是升级版本,卸载InfluxDB后需要重启电脑,否则启动会一直失败!

5、验证

查看influxd进程:[root@localhost home]# ps aux | grep influxinfluxdb  20254  0.0  0.2 605104 17552 ?        Ssl  17:47   0:01 /usr/bin/influxd -config /etc/influxdb/influxdb.conf启动客户端:[root@localhost home]# influxConnected to http://localhost:8086 version 1.2.2InfluxDB shell version: 1.2.2> show databasesname: databasesname----_internal> quit

6、[END]

原创粉丝点击