forked from mystiq/dex
documentation: clarify db permissions in getting started doc
In the 'getting started' doc create a user and database for dex to clarify that the user needs permissions to create databases, but dex does not. closes #127
This commit is contained in:
parent
1c0e59a5b4
commit
cc36362f1b
1 changed files with 11 additions and 3 deletions
|
@ -25,11 +25,19 @@ In addition, if you wish to try out authenticating against Google's OIDC backend
|
||||||
|
|
||||||
# Create Database
|
# Create Database
|
||||||
|
|
||||||
`createdb dex_db`
|
On the PostgreSQL server, login as a user with appropriate permissions and create a database and user for dex to use. These can be named arbitrarily, but are called `dex_db` and `dex`, respectively, in this example.
|
||||||
|
|
||||||
Let's store the connection string in a shell variable:
|
```sql
|
||||||
|
CREATE DATABASE dex_db;
|
||||||
|
CREATE USER dex WITH PASSWORD 'dex_pass';
|
||||||
|
GRANT ALL PRIVILEGES ON DATABASE dex_db TO dex;
|
||||||
|
```
|
||||||
|
|
||||||
`DEX_DB_URL=postgres://localhost/dex_db?sslmode=disable`
|
Store the [connection string](http://www.postgresql.org/docs/9.4/static/libpq-connect.html#LIBPQ-CONNSTRING) for the dex database in an environment variable:
|
||||||
|
|
||||||
|
```
|
||||||
|
DEX_DB_URL=postgres://dex:dex_pass@localhost/dex_db?sslmode=disable
|
||||||
|
```
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue