真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Linux下Oracle11gDG搭建

環(huán)境:模擬主庫的創(chuàng)建 使用DBCA 啟動圖形界面 選項中的install option  --->選中create and configure a database  

創(chuàng)新互聯(lián)成立于2013年,先為斗門等服務(wù)建站,斗門等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為斗門企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

          模擬備庫的創(chuàng)建 使用DBCA 啟動圖形界面 選項中的install option  --->選中install database software only


準(zhǔn)備工作  使用Oracle 11g的RMAN功能進(jìn)行數(shù)據(jù)庫克?。〝?shù)據(jù)庫克隆 保證主庫與備庫在軟件上保持完全一致)

主庫(porcl 192.168.1.11)

修改參數(shù)db_unique_name

show parameter db_unique_name;
alter system set db_unique_name='porcl' scope=spfile;
shutdown immediate

開啟數(shù)據(jù)庫歸檔模式

startup mount
alter database archivelog;
alter database open;

配置靜態(tài)網(wǎng)絡(luò)(這里采用netmgr的圖形界面)

添加 database service

porcl                                sorcl                                porcl_DGMGRL

/u01/app/oracle/11g      /u01/app/oracle/11g      /u01/app/oracle/11g

orcl                                  orcl                                 orcl

重啟監(jiān)聽

配置本地命名解析tnsnames.ora

orcl     ----->  192.168.1.11

porcl   ----->  192.168.1.11

sorcl    -----> 192.168.1.10

創(chuàng)建參數(shù)文件

create pfile from spfile;

拷貝參數(shù)文件、密碼文件到備庫主機(jī)

scp initorcl.ora orapworcl  192.168.1.10:/u01/oracle/11g/dbs/

增加備庫日志

alter database add standby logfile group 10;
alter database add standby logfile group 11;
alter database add standby logfile group 12;
alter database add standby logfile group 13;

備庫(sorcl 192.168.1.10)

配置靜態(tài)網(wǎng)絡(luò)

添加 database service

porcl                                sorcl                                sorcl_DGMGRL

/u01/app/oracle/11g      /u01/app/oracle/11g      /u01/app/oracle/11g

orcl                                  orcl                                 orcl

重啟監(jiān)聽

配置本地命名解析tnsnames.ora

orcl     ----->  192.168.1.10

porcl   ----->  192.168.1.11

sorcl    -----> 192.168.1.10

修改參數(shù)文件(遠(yuǎn)程拷貝的initorcl.ora)

將 db_unique_name 置為 sorcl

(將參數(shù)文件目錄下spfileorcl.ora刪除,如果有的話)

建立必要的文件夾

grep "/u01" initupdb.ora
mkdir /u01/oracle/admin/updb/adump /u01/oracle/oradata/updb /u01/oracle/fast_recovery_area/updb -p

設(shè)置環(huán)境變量 ORACLE_SID

export ORACLE_SID=orcl

使用initorcl.ora啟動到nomount狀態(tài)

startup nomount

生成spfile

create spfile from pfile;

重新啟動到nomount狀態(tài)

startup force nomount

增加備庫日志

alter database add standby logfile group 10;
alter database add standby logfile group 11;
alter database add standby logfile group 12;
alter database add standby logfile group 13;

從主庫上克隆備庫

rman target sys/oracle@pupdb auxiliary sys/oracle@supdb
duplicate target database for standby from active database nofilenamecheck;
exit

實現(xiàn)DG

設(shè)置(主備庫都設(shè)置)參數(shù)dg_broker_Start=true

alter system set dg_broker_Start=true;

使用dgmgrl命令創(chuàng)建并生效配置文件

dgmgrl sys/oracle@pupdb
create configuration dgc as primary database is pupdb;
add database  supdb as connect identifier is supdb maintained as physical;
enable configuration;
show configuration;

可能出現(xiàn)的問題

  1. 使用rman 連接主備庫時提示缺少權(quán)限的報錯----->主庫與備庫的網(wǎng)絡(luò)連接錯誤,請重新檢查網(wǎng)絡(luò)配置和本地命名解析

  2. show configuration 備庫 提示出現(xiàn)警告?zhèn)鋷斓哪硞€屬性設(shè)置有問題,但是檢查沒有問題------->重啟備庫


標(biāo)題名稱:Linux下Oracle11gDG搭建
URL標(biāo)題:http://weahome.cn/article/jjecpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部