influxDB 安装部署

时序数据库排名

11.png
22.png

性能优势

https://cloud.tencent.com/developer/article/1494305

性能测试

https://www.jianshu.com/p/979d8853210d

基本介绍

https://segmentfault.com/a/1190000020838668

docker 部署 influxdb

docker run -d -p 8083:8083 -p 8086:8086 --name influxDb influxdb

docker exec -it influxDb bash

cd /usr/bin ./influx

yum 部署 influxdb

wget https://dl.influxdata.com/influxdb/releases/influxdb-1.8.2.x86_64.rpm

sudo yum -y localinstall influxdb-1.8.2.x86_64.rpm

33.png

创建数据库及用户,设置保留策略

create database test

use test

create user admin with password '***'

grant all privileges on test to admin

create retention policy "default_retention" on "test" duration180d replication 1 default

查看端口占用情况
netstat -nltup
启动 重启 查看服务状态
systemctl start influxdb
systemctl restart influxdb
systemctl status influxdb

yum 部署可视化工具 chronograf
wget https://dl.influxdata.com/chronograf/releases/chronograf-1.8.2.x86_64.rpm
sudo yum localinstall chronograf-1.8.2.x86_64.rpm
systemctl start chronograf

你可能感兴趣的:(influxDB 安装部署)