Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why InfluxDB web admin interface doesn't work with 1.1 release?

Tags:

influxdb

I have installed influxDB on my vps, and i would like to use his Web admin interface. Normaly i can acces it at the :8083 port but it doesn't work.

ps: I have activated the admin interface in influxDB.conf file.

like image 811
Arthur Josselin Avatar asked Nov 30 '16 15:11

Arthur Josselin


Video Answer


2 Answers

The Web Admin interface was deprecated in version 1.1 of InfluxDB. It will be removed in 1.2 in favor of Chronograf.

However in 1.1 you can still enable the Admin UI by updating the [admin] section of the InfluxDB configuration file.

[admin]
  enabled = true
  ...
like image 124
Michael Desa Avatar answered Sep 23 '22 08:09

Michael Desa


Initially, my installation (Win 7) worked well until I lost access to the web interface after an upgrade to 1.3.5. Even running an older version of Influxd would not fix it. I struggled for a while playing with all sorts of config changes and moved the installation out of the Programs folder with no help, until I found this:

https://docs.influxdata.com/influxdb/v1.3/tools/web_admin/

In version 1.3, the web admin interface is no longer available in InfluxDB. The interface does not run on port 8083 and InfluxDB ignores the [admin] section in the configuration file if that section is present. Chronograf replaces the web admin interface with improved tooling for querying data, writing data, and database management. See Chronograf’s transition guide for more information.

I simply downloaded the Chronograph executable and started it to connect on port :8888 which turned out to be a better user experience that the :8083 admin interface.

https://portal.influxdata.com/downloads

like image 30
sdittmar Avatar answered Sep 23 '22 08:09

sdittmar