Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

We have the main library for facility Munich running.

The next step is create a publication for this newly create database. Back to the Postgres server.

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
# create publication for all tables
create publication muc_pub for all tables;

Configure subscriber server

...