From b254a3447ece392fdd27e908101e6b4d6dadf674 Mon Sep 17 00:00:00 2001 From: Michael Heinemann Date: Fri, 9 Jun 2017 17:44:10 +0200 Subject: [PATCH] Give Information on privileges, update link (#2787) * If the used influxdb is configured to use authentication the user needs read/write permissions on the database. Mention this in the doc. * The influxdb documentation has a */latest* link. Use this instead of a fixed version number. --- source/_components/influxdb.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/influxdb.markdown b/source/_components/influxdb.markdown index 270d3df1872..c046bf0edbc 100644 --- a/source/_components/influxdb.markdown +++ b/source/_components/influxdb.markdown @@ -23,13 +23,13 @@ The default InfluxDB configuration doesn't enforce authentication. If you have i influxdb: ``` -You will still need to create a database named `home_assistant` via InfluxDB's web interface or command line. For instructions how to create a database check the [InfluxDB documentation](https://docs.influxdata.com/influxdb/v1.0/introduction/getting_started/#creating-a-database) relevant to the version you have installed. +You will still need to create a database named `home_assistant` via InfluxDB's web interface or command line. For instructions how to create a database check the [InfluxDB documentation](https://docs.influxdata.com/influxdb/latest/introduction/getting_started/#creating-a-database) relevant to the version you have installed. Configuration variables: - **host** (*Optional*): IP address of your database host, e.g. 192.168.1.10. Defaults to `localhost`. - **port** (*Optional*): Port to use. Defaults to 8086. -- **username** (*Optional*): The username of the database user. +- **username** (*Optional*): The username of the database user. The user needs read/write privileges on the database. - **password** (*Optional*): The password for the database user account. - **database** (*Optional*): Name of the database to use. Defaults to `home_assistant`. The database must already exist. - **ssl** (*Optional*): Use https instead of http to connect. Defaults to false.