Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Host: ip address where InfluxDB is installed
  • Port: 8086
  • Username: onos
  • Password: onos.password

if you cannot access the influxdb GUI through port 8083, and influxdb through port 8086, you need to manually open those ports using follow commands.

Code Block
languagetext
$ sudo firewall-cmd --zone=public --add-port=8083/tcp --permanent
$ sudo firewall-cmd --zone=public --add-port=8086/tcp --permanent
$ sudo firewall-cmd --zone=public --add-port=8088/tcp --permanent
$ sudo firewall-cmd --reload

Now, we are ready to push the metrics from ONOS to InfluxDB!

...