https://ubuntu.com/server/docs/databases-postgresql
service postgresql service postgresql status | start | stop | reload
sudo su postgres
-
psql
-
psql --help
Got error while using the command to login using port and username Stackoverflow Solution
-
psql -h localhost -p 5432 -U neerajkumar testdatabase
ALTER USER postgres WITH PASSWORD 'newpassword';
alter user postgres with password 'newpassword';
CREATE DATABASE testdatabase;