Skip to content

Commit

Permalink
Fix command to log as postgres user
Browse files Browse the repository at this point in the history
Start the shell of postgres user as a login shell. Without it, the shell is started in the current directory which may yield permissions issues.
  • Loading branch information
cbliard committed Sep 6, 2023
1 parent 325dbc6 commit 14d67fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/development/development-environment-ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Next, install a PostgreSQL database.
Create the OpenProject database user and accompanied database.

```shell
sudo su postgres
sudo su - postgres
[postgres@ubuntu]# createuser -d -P openproject
```
You will be prompted for a password, for the remainder of these instructions, we assume its `openproject-dev-password`.
Expand Down

0 comments on commit 14d67fb

Please sign in to comment.