Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit c60895a

Browse files
authored
Merge pull request #390 from GuiLeme/issue-388
Fix a command to not crash the installing process of GreenLight.
2 parents f2cb343 + 8383d16 commit c60895a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/greenlight/2019-04-15-gl-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ docker run --rm bigbluebutton/greenlight:v2 cat ./docker-compose.yml > docker-co
143143
Finally, randomly generate a password for the PostgreSQL database and replace the entries in the `.env` and `.docker-compose.yml` file with this command
144144

145145
```bash
146-
export pass=$(openssl rand -base64 24); sed -i 's/POSTGRES_PASSWORD=password/POSTGRES_PASSWORD='$pass'/g' docker-compose.yml;sed -i 's/DB_PASSWORD=password/DB_PASSWORD='$pass'/g' .env
146+
export pass=$(openssl rand -hex 24); sed -i 's/POSTGRES_PASSWORD=password/POSTGRES_PASSWORD='$pass'/g' docker-compose.yml;sed -i 's/DB_PASSWORD=password/DB_PASSWORD='$pass'/g' .env
147147
```
148148

149149
Once you have completed these steps, from the `~/greenlight` directory, start the application using:

0 commit comments

Comments
 (0)