Skip to content

Commit

Permalink
docs: revise postgres permission setup instructions. (#10039)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioga authored Oct 10, 2024
1 parent 2594d90 commit 0613cc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/setup-cluster/checklists/postgresql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ Install PostgreSQL using ``apt`` or ``yum``
postgres=# CREATE DATABASE determined;
postgres=# CREATE USER determined WITH ENCRYPTED PASSWORD 'determined-password';
postgres=# GRANT ALL PRIVILEGES ON DATABASE determined TO determined;
postgres=# \c determined
determined=> GRANT ALL ON SCHEMA public TO determined;
************
Next Steps
Expand Down
2 changes: 2 additions & 0 deletions docs/setup-cluster/on-prem/options/linux-packages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ Install PostgreSQL using ``apt`` or ``yum``
postgres=# CREATE DATABASE determined;
postgres=# CREATE USER determined WITH ENCRYPTED PASSWORD 'determined-password';
postgres=# GRANT ALL PRIVILEGES ON DATABASE determined TO determined;
postgres=# \c determined
determined=> GRANT ALL ON SCHEMA public TO determined;
Install the Determined Master and Agent
=======================================
Expand Down

0 comments on commit 0613cc6

Please sign in to comment.