Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:58:22

0001 #!/bin/bash
0002 
0003 su - postgres
0004 
0005 psql postgres
0006 \password
0007 #postpass
0008 postgres=# create database idds;
0009 CREATE DATABASE
0010 postgres=# create user iddsuser with encrypted password 'iddspass';
0011 CREATE ROLE
0012 postgres=# grant all privileges on database idds to iddsuser;
0013 GRANT
0014 postgres=#
0015 
0016 psql --host=localhost --port=5432 --username=iddsuser --password --dbname=idds