這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)Linux操作系統(tǒng)啟動(dòng)時(shí)怎樣自動(dòng)啟用oracle standby備庫日志應(yīng)用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)從2013年創(chuàng)立,先為安龍等服務(wù)建站,安龍等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為安龍企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
1. 啟用DG_BROKER_START
ALTER SYSTEM SET DG_BROKER_START=TRUE SCOPE=BOTH;
2.創(chuàng)建shell文件: 以下是內(nèi)容
[oracle@proddb02 ~]$ cat /home/oracle/DBA/startdg.sh
#!/bin/sh
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
export ORACLE_SID=服務(wù)名
export PATH=$PATH:$ORACLE_HOME/bin
dgmgrl / "startup"
sqlplus / as sysdba @/home/oracle/DBA/start_redo_apply.sql
[oracle@proddb02 ~]$ cat /home/oracle/DBA/start_redo_apply.sql
alter database recover managed standby database using current logfile disconnect;
3. 使用root用戶將腳本加入/etc/rc.local
[oracle@proddb02 ~]$ cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
su - oracle -lc "/u01/app/oracle/product/11.2.0/db_1/bin/lsnrctl start"
su - oracle -lc "/home/oracle/DBA/startdg.sh"
上述就是小編為大家分享的Linux操作系統(tǒng)啟動(dòng)時(shí)怎樣自動(dòng)啟用oracle standby備庫日志應(yīng)用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。