Scripts
This chapter presents the available scripts. All our scripts have a detailed synopsis please, check the option “-h” or “—help”.
Operating system Start/Stop integration
init.d script
cat ${DMK_HOME}/templates/init.d/postgres.linux
#!/bin/bash
...
case "$1" in
'start')
"${DMK_HOME:-/u01/app/postgres/local/dmk}/bin/postgres.sh" start
touch /var/lock/subsys/postgres
;;
'stop')
"${DMK_HOME:-/u01/app/postgres/local/dmk}/bin/postgres.sh" stop
rm -f /var/lock/subsys/postgres
;;
*)
echo "usage $0 {start|stop}"
exit 1
;;
esacsystemd service file
fsdisc.ksh
dmk-run.bash
dmk-pgpool-*.sh
Last updated