mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00:00
Give PostgreSQL role login permissions
Fixes an error upon running the first script: FATAL: role "kemal" is not permitted to log in
This commit is contained in:
parent
9249c61a10
commit
74493d3043
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ cd invidious
|
|||
```bash
|
||||
brew services start postgresql
|
||||
createdb
|
||||
psql -c "CREATE ROLE kemal WITH PASSWORD 'kemal';" # Change 'kemal' here to a stronger password, and update `password` in config/config.yml
|
||||
psql -c "CREATE ROLE kemal WITH LOGIN PASSWORD 'kemal';" # Change 'kemal' here to a stronger password, and update `password` in config/config.yml
|
||||
createdb -O kemal invidious
|
||||
psql invidious kemal < config/sql/channels.sql
|
||||
psql invidious kemal < config/sql/videos.sql
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue