Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
sudo -u postgres psql -c "CREATE USER your_user_id with password 'your_password' createdb;"
Code Block
sudo -u postgres psql -c 'create database newid;'


If you want to encode in UTF8, you need to change teamplate0 in UTF8 first

...

Code Block
CREATE DATABASE db_name
 OWNER =  role_name
 TEMPLATE = template
 ENCODING = encoding
 LC_COLLATE = collate
 LC_CTYPE = ctype
 TABLESPACE = tablespace_name
 CONNECTION LIMIT = max_concurrent_connection


WITH ENCODING='UTF8'


Once you create user successfully, you can try to check by

Code Block
psql -h localhost -U <your_username>


To see the database list

Code Block
\list


To see the user list

Code Block
\du