45 lines
1.0 KiB
Django/Jinja
45 lines
1.0 KiB
Django/Jinja
#!/bin/bash
|
|
#
|
|
#
|
|
# chkconfig: 35 98 08
|
|
#
|
|
# description: Oracle auto start-stop script.
|
|
# Set ORA_HOME to be equivalent to the $ORACLE_HOME
|
|
# from which you wish to execute dbstart and dbshut;
|
|
#
|
|
# Set ORA_OWNER to the user id of the owner of the
|
|
# Oracle database in ORACLE_HOME.
|
|
|
|
ORA_HOME={{ oracle_home }}
|
|
ORACLE_HOME_LISTENER={{ oracle_home }}
|
|
ORA_OWNER=oracle
|
|
|
|
case "$1" in
|
|
'start')
|
|
# Start the Oracle databases:
|
|
# The following command assumes that the oracle login
|
|
# will not prompt the user for any values
|
|
# Remove "&" if you don't want startup as a background process.
|
|
su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
|
|
touch /var/lock/subsys/dbora
|
|
;;
|
|
|
|
'stop')
|
|
# Stop the Oracle databases:
|
|
# The following command assumes that the oracle login
|
|
# will not prompt the user for any values
|
|
su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
|
|
rm -f /var/lock/subsys/dbora
|
|
;;
|
|
|
|
'restart')
|
|
stop
|
|
start
|
|
;;
|
|
|
|
*)
|
|
echo $"Usage: $0 {start|stop|restart}"
|
|
exit 2
|
|
esac
|
|
|