...
- Configure the PostgreSQL database to allow a remote client connection to the database. The working directory is $PGDATA.
Edit the
pg_hba.conf
file to match the settings in install.xml. See Appendix D - PostgreSQL HBA Settings for an example.
When the files has have been configured, the PostgreSQL database needs to be restarted.
Create the PostgreSQL database instance. The working directory is postgres.
$ source ./postgre_create_instance.sh
If no error occurredoccurrs, the database creation will now be completed is complete and the rest of this section can be ignored.
Tip title Hint! When the instance creation script has been is executed, there is a log file in the /tmp
directory is created that can be used for trouble shootingtroubleshooting. Themz.log file
contains PostgreSQL responses from the database creation.- If the script fails:
Cleanup the system before the next try: - Start PSQL:
$ psql
- Remove the Database and Users:
postgres=# DROP DATABASE mz;
postgres=# DROP USER mzowner;
postgres=# DROP USER mzadmin;
postgres=# \q
...