顯示具有 Influxdb 標籤的文章。 顯示所有文章
顯示具有 Influxdb 標籤的文章。 顯示所有文章

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
[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