Oracle 10gR2 RAC+ASM 歸檔設定
本文 來源網路
Oracle 10gR2 RAC+ASM 歸檔設定示例
從Oracle 10gR2開始,對於RAC資料庫設定歸檔模式非常方便,只需要在其中任何一個節點上操作,剩餘節點instance關閉即可,下面是一個Oracle 10.2.0.2
版本2個節點的RAC資料庫開啟歸檔模式的示例,歸檔存放在FRA磁碟組下的demo目錄下
第一步:規劃目錄
例項1的歸檔路徑:+FRA/demo/arch1
例項2的歸檔路徑:+FRA/demo/arch2
[oracle@rac02] /home/oracle> export ORACLE_SID=+ASM2
[oracle@rac02] /home/oracle> asmcmd
ASMCMD> ls
DATA/
FRA/
ASMCMD> cd FRA
ASMCMD> mkdir demo
ASMCMD> cd demo
ASMCMD> mkdir arch1 arch2
ASMCMD> ls -ltr
Type Redund Striped Time Sys Name
N arch1/
N arch2/
ASMCMD>
第二步:關閉例項2
[oracle@rac02] /home/oracle> sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.2.0 - Production on Sat Oct 9 18:07:16 2010
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
在節點1上確認例項2已經關閉
[oracle@rac01] /home/oracle> crs_stat -t
Name Type Target State Host
------------------------------------------------------------
ora.demo.db application ONLINE ONLINE rac02
ora....o1.inst application ONLINE ONLINE rac01
ora....o2.inst application OFFLINE OFFLINE
ora....SM1.asm application ONLINE ONLINE rac01
ora....01.lsnr application ONLINE ONLINE rac01
ora.rac01.gsd application ONLINE ONLINE rac01
ora.rac01.ons application ONLINE ONLINE rac01
ora.rac01.vip application ONLINE ONLINE rac01
ora....SM2.asm application ONLINE ONLINE rac02
ora....02.lsnr application ONLINE ONLINE rac02
ora.rac02.gsd application ONLINE ONLINE rac02
ora.rac02.ons application ONLINE ONLINE rac02
ora.rac02.vip application ONLINE ONLINE rac02
第三步:設定歸檔引數
在例項1上操作即可
[oracle@rac01] /home/oracle> sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.2.0 - Production on Sat Oct 9 18:07:51 2010
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
SQL> show parameter cluster_database
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
cluster_database boolean TRUE
cluster_database_instances integer 2
SQL> show parameter instance_name
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
instance_name string demo1
SQL> archive log list;
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 3
Current log sequence 4
SQL> alter system set log_archive_dest_1='LOCATION=+FRA/demo/arch1' sid='demo1';
System altered.
SQL> alter system set log_archive_dest_1='LOCATION=+FRA/demo/arch2' sid='demo2';
System altered.
SQL> show parameter log_archive_dest_1
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
log_archive_dest_1 string LOCATION=+FRA/demo/arch1
log_archive_dest_10 string
第四步:開啟歸檔模式
繼續在例項1上操作
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 218103808 bytes
Fixed Size 1260032 bytes
Variable Size 75499008 bytes
Database Buffers 138412032 bytes
Redo Buffers 2932736 bytes
Database mounted.
SQL> alter database archivelog;
Database altered.
SQL> alter database open;
Database altered.
SQL> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination +FRA/demo/arch1
Oldest online log sequence 3
Next log sequence to archive 4
Current log sequence 4
SQL>
好了,到這裡就按照我預先的規劃把這個2個節點的RAC資料庫開啟到歸檔模式下了,歸檔檔案存放在FRA磁碟組中.
第五步:開啟剩餘例項
[oracle@rac01] /home/oracle> crs_stat -t
Name Type Target State Host
------------------------------------------------------------
ora.demo.db application ONLINE ONLINE rac02
ora....o1.inst application ONLINE ONLINE rac01
ora....o2.inst application OFFLINE OFFLINE
ora....SM1.asm application ONLINE ONLINE rac01
ora....01.lsnr application ONLINE ONLINE rac01
ora.rac01.gsd application ONLINE ONLINE rac01
ora.rac01.ons application ONLINE ONLINE rac01
ora.rac01.vip application ONLINE ONLINE rac01
ora....SM2.asm application ONLINE ONLINE rac02
ora....02.lsnr application ONLINE ONLINE rac02
ora.rac02.gsd application ONLINE ONLINE rac02
ora.rac02.ons application ONLINE ONLINE rac02
ora.rac02.vip application ONLINE ONLINE rac02
[oracle@rac01] /home/oracle> srvctl start instance -d demo -i demo2
[oracle@rac01] /home/oracle> crs_stat -t
Name Type Target State Host
------------------------------------------------------------
ora.demo.db application ONLINE ONLINE rac02
ora....o1.inst application ONLINE ONLINE rac01
ora....o2.inst application ONLINE ONLINE rac02
ora....SM1.asm application ONLINE ONLINE rac01
ora....01.lsnr application ONLINE ONLINE rac01
ora.rac01.gsd application ONLINE ONLINE rac01
ora.rac01.ons application ONLINE ONLINE rac01
ora.rac01.vip application ONLINE ONLINE rac01
ora....SM2.asm application ONLINE ONLINE rac02
ora....02.lsnr application ONLINE ONLINE rac02
ora.rac02.gsd application ONLINE ONLINE rac02
ora.rac02.ons application ONLINE ONLINE rac02
ora.rac02.vip application ONLINE ONLINE rac02
[oracle@rac01] /home/oracle>
第六步:測試驗證
[oracle@rac01] /home/oracle> sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.2.0 - Production on Sat Oct 9 18:26:51 2010
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
SQL> alter system archive log current;
System altered.
SQL>ASMCMD> pwd
+FRA/demo/arch1
ASMCMD> ls -ltr
Type Redund Striped Time Sys Name
N 1_4_731958872.dbf => +FRA/demo/ARCHIVELOG/2010_10_09/thread_1_seq_4.256.731960815
ASMCMD> cd ..
ASMCMD> cd arch2
ASMCMD> ls -ltr
Type Redund Striped Time Sys Name
N 2_2_731958872.dbf => +FRA/demo/ARCHIVELOG/2010_10_09/thread_2_seq_2.257.731960817
ASMCMD> [oracle@rac02] /home/oracle> sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.2.0 - Production on Sat Oct 9 18:34:17 2010
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
SQL> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination +FRA/demo/arch2
Oldest online log sequence 2
Next log sequence to archive 3
Current log sequence 3
SQL>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15187685/viewspace-754384/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 歸檔設定Oracle
- ORACLE RAC 設定歸檔Oracle
- Oracle歸檔模式與非歸檔模式設定Oracle模式
- oracle自動歸檔的設定Oracle
- Oracle歸檔引數設定問題Oracle
- oracle 歸檔的一般設定Oracle
- Oracle歸檔模式、引數意義、設定Oracle模式
- 設定歸檔模式模式
- oracle 10gR2 rac+asm 資料庫安裝配置步驟Oracle 10gASM資料庫
- 【Oracle】歸檔日誌管理-設定歸檔日誌路徑以及歸檔日誌冗餘Oracle
- oracle資料庫rman歸檔設定和管理Oracle資料庫
- 歸檔模式的設定模式
- 設定Oracle9i為自動歸檔模式Oracle模式
- oracle歸檔日誌儲存路徑的設定Oracle
- oracle 10G設定歸檔目錄及命令Oracle 10g
- Postgresql日誌歸檔設定SQL
- 10G設定歸檔
- oracle 10g rac+asm 歸檔路徑磁碟組空間滿問題處理Oracle 10gASM
- oracle 歸檔/非歸檔Oracle
- DB2 設定歸檔模式DB2模式
- 10G RAC歸檔設定
- Oracle資料庫設定為歸檔模式的操作方法Oracle資料庫模式
- Oracle的奇葩設定之歸檔清理作業與rm -rfOracle
- Oracle的奇葩設定之非歸檔模式與RMAN備份Oracle模式
- 在Oracle 10gR2中設定指定的恢復點Oracle 10g
- 備份前先設定成歸檔模式模式
- sqlplus下設定歸檔模式SQL模式
- oracle歸檔Oracle
- Oracle RAC啟動歸檔時需要設定CLUSTER_DATABASE引數嗎?OracleDatabase
- Oracle的閃回恢復區和歸檔日誌多路徑設定Oracle
- RAC 設定NFS作為歸檔目錄NFS
- 閃回與歸檔引數的設定
- OARCLE資料庫歸檔模式的設定資料庫模式
- 如何設定資料庫為歸檔模式資料庫模式
- Oracle歸檔模式和非歸檔模式Oracle模式
- [Archive]更改ORACLE預設歸檔路徑HiveOracle
- 10gr2自動擴充套件控制檔案中的設定套件
- oracle歸檔模式Oracle模式