2017年12月25日 星期一
InfluxDB admin interface available
As of version 1.3, the web admin interface is no longer available in InfluxDB. The interface does not run on port 8083and 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.
2017年3月16日 星期四
InfluxDB enable Web UI
# vi influxdb/etc/config.sample.toml
Use environment variable:
$ vi docker-compose.yml
References :
influxdb/config.sample.toml at master · influxdata/influxdb
docker-influxdb-grafana/docker-compose.yml at master · nicolargo/docker-influxdb-grafana
[admin]
enabled = true
Use environment variable:
INFLUXDB_ADMIN_ENABLED=true
$ vi docker-compose.yml
influxdb:
image: influxdb:latest
container_name: influxdb
ports:
- "8083:8083"
- "8086:8086"
environment:
- INFLUXDB_ADMIN_ENABLED=true
volumes:
- ./influxdb:/var/lib/influxdb
References :
influxdb/config.sample.toml at master · influxdata/influxdb
docker-influxdb-grafana/docker-compose.yml at master · nicolargo/docker-influxdb-grafana
訂閱:
文章 (Atom)
