Pada kesempatan kali ini saya akan membahas mengenai Cara Install Influxdb di centos 7, influxdb sendiri adalah salah satu open source untuk mengolah database yang bisa di pakai secara free untuk menampung dan mengolah data perusahaan anda.
Berikut cara install nya :
- Dengan Docker
docker run -p 8086:8086 \
-e INFLUXDB_DB=krakend \
-e INFLUXDB_USER=letgo -e INFLUXDB_USER_PASSWORD=pas5w0rd \
-e INFLUXDB_ADMIN_USER=admin -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \
-it --name=influx \
influxdb
- Melalui install manual
cat <<EOF | sudo tee /etc/yum.repos.d/influxdb.repo
[influxdb]
name = InfluxDB Repository - RHEL $releasever
baseurl = https://repos.influxdata.com/rhel/\$releasever/\$basearch/stable
enabled = 1
gpgcheck = 1
gpgkey = https://repos.influxdata.com/influxdb.key
EOF
yum install influxdb -y
systemctl status influxdb
systemctl enable influxdb
systemctl start influxdb
- Cara masuk ke database nya
#influx
Connected to http://localhost:8086 version 1.8.6
InfluxDB shell version: 1.8.6
(Visited 353 times, 1 visits today)