influxdb

influxdb官方文档:https://docs.influxdata.com/influxdb/v1.6/introduction/getting-started/

docker安装

docker search influxdb

1. docker pull influxdb
2. docker run --name influxdb_s -p 8083:8083 -p 8086:8086 influxdb:latest
3. docker exec -it influxdb_s influx -precision rfc3339

远程连接:

docker exec -it influxdb_s influx -precision rfc3339 -host 192.168.1.52 -port 8086

猜你喜欢

转载自www.cnblogs.com/zhzhlong/p/9619631.html