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.
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
...
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.
Having same issue. Installed 1.1 and not able to access admin interface despite changing the port several times. I was able to access the http endpoint though
With little probing, I realized that Influx DB was loading the default config all along and all my config changes were not getting applied. When I started the service with influxd -config influxdb.config the admin console started working.
PS: I am using it on windows.