AUTO START ORACLE ON LINUX(zt)

zhouwf0726發表於2019-01-21
LINUX下AUTO START ORACLE(保留一下)
1, user root 下面修改:
[root@hpcmdb2 ~]# vi /etc/oratab
orc1:/opt/oracle/product/10.2.0/db_1:Y
將N該為Y
2, user oracle 下面修改:
[root@hpcmdb2 init.d]# su - oracle
[oracle@hpcmdb2 ~]$ cd $ORACLE_HOME/bin
[oracle@hpcmdb2 bin]$ vi dbstart
找到 ORACLE_HOME_LISTNER 這行, 修改成:
ORACLE_HOME_LISTNER=/opt/oracle/product/10.2.0/db_1
或者直接修改成:
ORACLE_HOME_LISTNER=$ORACLE_HOME
同樣道理修改 dbshut
[oracle@hpcmdb2 bin]$ vi dbshut
測試執行 dbshut, dbstart 看能否啟動oracle 服務及listener服務
[oracle@hpcmdb2 bin]$ ps -efw | grep ora_
[oracle@hpcmdb2 bin]$ lsnrctl status
[oracle@hpcmdb2 bin]$ ps -efw | grep LISTEN | grep -v grep
在切換回 user root:
[root@hpcmdb2 init.d]# cd /etc/rc.d/init.d/
[root@hpcmdb2 init.d]# vi oracle10
#!/bin/bash
# chkconfig: 345 99 10
# description: Startup Script for Oracle Databases
# /etc/init.d/oracle10
export ORACLE_SID=orc1
# export ORACLE_HOME_LISTNER=/opt/oracle/product/10.2.0/db_1/bin/
export ORACLE_BASE=/opt
export ORACLE_HOME=/opt/oracle/product/10.2.0/db_1
export PATH=$PATH:$ORACLE_HOME/bin
case "$1" in
start)
su oracle -c $ORACLE_HOME/bin/dbstart
touch /var/lock/oracle
echo "OK"
;;
stop)
echo -n "Shutdown Oracle: "
su oracle -c $ORACLE_HOME/bin/dbshut
rm -f /var/lock/oracle
echo "OK"
;;
*)
echo "Usage: 'basename $0' start|stop"
exit 1
esac
exit 0
儲存,
然後又是同樣的
chkconfig --add oracle10
chkconfig --list oracle10

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756652/viewspace-242495/,如需轉載,請註明出處,否則將追究法律責任。

相關文章