您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何進(jìn)行CentOS Oracle測(cè)試運(yùn)行使用root用戶(hù)修改,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
Linux : CentOS-5Oracle: 10.2.0.1.0設(shè)置 Linux 上Oracle 自動(dòng)啟動(dòng) 200807221、首先在/etc/rc.d/init.d/目錄下配置CentOS Oracle的服務(wù)文件。su - rootvi oracledb將***的附件腳本貼入chmod 775 oracledb
2、使用root用戶(hù)修改:[root@localhost init.d]# vi /etc/oratabcatlogdb:/oracle/product/10.2.0/db_1:Y 將***的N改為Y
3、使用CentOS Oracle用戶(hù)修改$ORACLE_HOME/bin/dbstart文件[root@localhost init.d]# su - oracle[oracle@localhost ~]$ cd $ORACLE_HOME/bin[oracle@localhost bin]$ vi dbstart找到 ORACLE_HOME_LISTNER 這行, 修改成:
ORACLE_HOME_LISTNER=/oracle/product/10.2.0/db_1或者直接修改成:ORACLE_HOME_LISTNER=$ORACLE_HOME
測(cè)試運(yùn)行 dbshut, dbstart 看能否啟動(dòng)CentOS Oracle 服務(wù)及l(fā)istener服務(wù): [oracle@localhost bin]$ ps -ef|grep ora_[oracle@localhost bin]$ lsnrctl status
4、創(chuàng)建服務(wù) chkconfig --add oracledbservice oracledb does not support chkconfig在腳本中以下兩行必須存在# chkconfig: 345 99 10# description: script for the Oracle Instance, Listener
[root@localhost ~]# chkconfig --list oracledb oracledb 0:off 1:off 2:off 3:on 4:on 5:on 6:off--附件oracledb 腳本
#!/bin/bash
#
# chkconfig: 345 99 10
# description: script for the Oracle Instance, Listener
# /etc/init.d/oracledb
#
export ORACLE_HOME=/oracle/product/10.2.0/db_1
export ORACLE_SID=catlogdb
export PATH=$PATH:$ORACLE_HOME/bin
ORA_OWNR=oracle
# if the executables do not exist -- display error
if [ ! -f $ORACLE_HOME/bin/dbstart -o ! -d $ORACLE_HOME ]
then
echo "Oracle startup: cannot start"
exit 1
fi
# depending on parameter -- startup, shutdown, restart
# of the instance and listener or usage display
case "$1" in
start)
# Oracle listener and instance startup
echo -n "Starting Oracle: "
su $ORA_OWNR -c "$ORACLE_HOME/bin/dbstart"
su $ORA_OWNR -c "$ORACLE_HOME/bin/lsnrctl start"
touch /var/lock/oracle
su $ORA_OWNR -c $ORACLE_HOME/bin/emctl start dbconsole
echo "OK"
;;
stop)
# Oracle listener and instance shutdown
echo -n "Shutdown Oracle: "
su $ORA_OWNR -c "$ORACLE_HOME/bin/lsnrctl stop"
su $ORA_OWNR -c $ORACLE_HOME/bin/dbshut
rm -f /var/lock/oracle
su $ORA_OWNR -c $ORACLE_HOME/bin/emctl stop dbconsole
echo "OK"
;;
reload|restart)
$0 stop
$0 start
;;
****)
echo "Usage: `basename ` start|stop|restart|reload"
exit 1
esac
exit 0
CentOS Oracle備注說(shuō)明# chkconfig: 345 99 10指出3,4,5級(jí)別啟動(dòng)這個(gè)服務(wù),99是在相應(yīng)的/etc/rc.d/rcN.d(N為前面指定的級(jí)別,這里是345)目錄下生成的鏈接文件的序號(hào)(啟動(dòng)優(yōu)先級(jí)別)S99oradbstart,10為在除前面指出的級(jí)別對(duì)應(yīng)的/etc/rc.d/rcN.d(N為除345之外的級(jí)別)目錄生成的鏈接文件的序號(hào)(服務(wù)停止的優(yōu)先級(jí)別)K10oradbstart撤銷(xiāo)服務(wù)的話:chkconfig --del CentOS Oracledb
關(guān)于如何進(jìn)行CentOS Oracle測(cè)試運(yùn)行使用root用戶(hù)修改就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。