/usr/share/doc/dpm-server-postgres/README.Debian is in dpm-server-postgres 1.8.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | How to set up an DPM server with a postgres backend
===================================================
The DPM server is run by the dpmmgr user. This user requires a copy of
the host certificate files:
cp -p /etc/grid-security/hostcert.pem /etc/grid-security/dpmmgr/dpmcert.pem
cp -p /etc/grid-security/hostkey.pem /etc/grid-security/dpmmgr/dpmkey.pem
chown dpmmgr:dpmmgr /etc/grid-security/dpmmgr/dpm*
Create a postgres database user for the DPM server:
createuser -P <user>
The command above will prompt you for a password for the new user.
Create the DPM database:
createdb -O <user> <dbname>
Create the DPM database tables:
psql -W -U <user> <dbname> -f /usr/share/lcgdm/create_dpm_tables_postgres.sql
Let the DPM server know about the account information and make sure
only the dpmmgr user can read this information:
touch /etc/DPMCONFIG
chmod 600 /etc/DPMCONFIG
chown dpmmgr:dpmmgr /etc/DPMCONFIG
echo <user>/<password>@<dbserver>/<dbname> > /etc/DPMCONFIG
If the /<dbname> part is omitted the database "dpm_db" will be used.
If you have a firewall, open the DPM server port (5015).
Once the configuration is completed, change RUN_DPMDAEMON=no to
RUN_DPMDAEMON=yes in /etc/default/dpm, then start the DPM
server:
invoke-rc.d dpm start
|