美文网首页LinuxUbuntu
Install Influxdb in Ubuntu 16.04

Install Influxdb in Ubuntu 16.04

作者: qwfys | 来源:发表于2017-09-12 14:23 被阅读157次

add key

curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -

add sources

echo "deb https://repos.influxdata.com/ubuntu trusty stable" | sudo tee /etc/apt/sources.list.d/influxdb.list

update

apt update

install

lwk@qwfys ~ $ apt install influxdb

start

sudo service influxdb start

use

打开浏览器
http://127.0.0.1:8086

查看influxdb应用对应的几个端口号有没有正常工作

sudo netstat -naptu | grep LISTEN | grep influxd

相关文章

网友评论

    本文标题:Install Influxdb in Ubuntu 16.04

    本文链接:https://www.haomeiwen.com/subject/hrycsxtx.html