-
Notifications
You must be signed in to change notification settings - Fork 11
Production Notes
Song Zheng edited this page Sep 27, 2020
·
4 revisions
Information about production app servers
When generating passwords, use a tool like passwordsgenerator.net to generate strong passwords!
- Create user with ability to create databases and other users:
create user learndb with password 'wQhw6XHxacds9sX4' CREATEDB CREATEROLE;
- Create a database with the user as owner
create database learndb owner learndb;