“createdB postgres Befehlszeile” Code-Antworten

Erstellen Sie die Postgres -Datenbank

sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Igor Parra

createdB postgres Befehlszeile

su - postgres
# if not created
createuser test
# now create db
createdb testdb
alter user testuser with encrypted password 'qwerty';
grant all privileges on database testdb to testuser;
bilalahmed_dev

erstellt mit postgresql auf Ubuntu

susudo -u postgres
psqlpostgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Angry Antelope

Ähnliche Antworten wie “createdB postgres Befehlszeile”

Fragen ähnlich wie “createdB postgres Befehlszeile”

Weitere verwandte Antworten zu “createdB postgres Befehlszeile” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen