PSQL - Create Database


Created February 13, 2025
$ sudo -u username psql # Username of the account you created when installing postgres. Typically 'postgres'
$ password # Your sudo account password
$ CREATE DATABASE 'database_name';
Creates a database using PSQL in the shell