docker安装influxdb
1. 在Docker库中查找influxDB镜像
docker search influxdb # 在Docker库中查找influxDB镜像文件
2. 从Docker库中拉取influxDB镜像
docker pull influxdb # 从docker库中拉取influxDB镜像,默认拉取最新版本
docker images # 查看本地已有的镜像文件
3. Docker安装influxDB
sudo docker run -d -p 8083:8083 -p8086:8086 --expose 8090 --expose 8099 --name influxERP tutum/influxdb
-d:deamon,后台启动
-p:port, 端口映射,宿主机端口:容器内端口;8083是influxdb的web管理工具端口,8086是influxdb的HTTP API端口
--expose:允许容器接受外部传入的数据
--name:容器名称,此处为influxERP
influxdb:镜像名
最后是镜像名称+tag,镜像为tutum/influxdb,tag的值0.8.8指定了要运行的版本,默认是latest。
sudo docker ps -a # 查看本地运行的docker容器
4. 进入influxdb
docker exec -it influxERP bash #influxERP为容器名称
influx 启动
客户端
root@f75d6be98a48:/etc/influxdb# influx
Visit https://enterprise.influxdata.com to register for updates, InfluxDB server management, and monitoring.
Connected to http://localhost:8086 version 1.0.0
InfluxDB shell version: 1.0.0
>
服务端
root@f75d6be98a48:/etc/influxdb# influxd
8888888 .d888 888 8888888b. 888888b.
888 d88P" 888 888 "Y88b 888 "88b
888 888 888 888 888 888 .88P
888 88888b. 888888 888 888 888 888 888 888 888 8888888K.
888 888 "88b 888 888 888 888 Y8bd8P' 888 888 888 "Y88b
888 888 888 888 888 888 888 X88K 888 888 888 888
888 888 888 888 888 Y88b 888 .d8""8b. 888 .d88P 888 d88P
8888888 888 888 888 888 "Y88888 888 888 8888888P" 8888888P"
[run] 2021/06/29 07:21:49 InfluxDB starting, version 1.0.0, branch master, commit 37992377a55fbc138b2c01edd4deffed64b53989
[run] 2021/06/29 07:21:49 Go version go1.6.2, GOMAXPROCS set to 16
[run] 2021/06/29 07:21:49 Using configuration at: /etc/influxdb/influxdb.conf
run: open server: listen: listen tcp :8088: bind: address already in use
influxDB相关命令
# influxDB中创建数据库
create database imooc
# influxDB中创建用户bubba,设置密码bumblebeetuna,并授予所有权限
create user bubba with password 'bumblebeetuna'
grant all privileges to bubba
# 查询imooc数据库的nginx_log表的所有数据
use imooc # 使用imooc数据库
select * from nginx_log
3、端口说明
8083:访问web页面的地址,8083为默认端口;
8086:数据写入influxdb的地址,8086为默认端口;
8088:数据备份恢复地址,8088为默认端口;
参考文档
https://www.bbsmax.com/A/kmzLDyBKzG/
https://blog.csdn.net/zhoutaotao123/article/details/103114163