Versions Compared

Key

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

...

Code Block
# start the database cluster
pg_ctl -D /var/lib/postgresql/daselement-munich_publication start

Create default postgres user

Code Block
# access the database via psql
psql --port=5432 postgres

# 
CREATE ROLE postgres LOGIN password 'postgres';

# exit the database from psql
\q

Configure subscriber server

...