...
Now create a new library inside the software. Use the dbuser user_daselement to connect to the databas.
...
Code Block |
---|
# log in to the newly created database
psql --port=5432 de_munich_vfxelements
|
We have to create a publication for this library/database that all the other facilities can later subscribe to.
Code Block |
---|
# give the user_replication the correct priviliges to create a publication GRANT ALL PRIVILEGES ON DATABASE de_munich_vfxelements TO user_replication; # create publication for all tables create publication muc_pub for all tables; # #> the expected output is: CREATE PUBLICATION # to show all publication use this command \dRp |
Configure subscriber server
...
command | description |
---|---|
| list all databases |
| list all users |
| lists available publications |
| lists available subscriptions |
| change user password |
initdb: command not found
...