You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create a database
using port forwarding, access this database using the pgadmin3 GUI from your workstation
sudo passwd postgres
psql -d postgres
CREATE USER agalan ;
ALTER ROLE agalan PASSWORD 'xxxxx';
CREATE ROLE agalan SUPERUSER;
ALTER ROLE agalan LOGIN; (without password);
CREATE DATABASE mr1;
CREATE SCHEMA mr1;
GRANT ALL ON DATABASE mr1 TO agalan;
GRANT ALL ON SCHEMA mr1 TO agalan;