ASM學習筆記_配置RAW Device磁碟組
ASM學習筆記_配置RAW Device磁碟組
目錄
1 RAW device 的繫結與確認
2 修改RAW devcie 的屬主,許可權
3 asm_diskstring中的語法問題
##############################################################
1 RAW device 的繫結與確認
##############################################################
不的同的作業系統的操作方法存在差異
在做塊裝置到字元裝置的繫結前,必須對新加的磁碟進行分割槽
fdisk -l
#/dev/sdc
#fdisk /dev/sdc
分成sdc[1-6]
以SUSE為例
1.1 編輯 raw 檔案
#vi /etc/raw
raw1:sdc1
raw2:sdc2
raw3:sdc3
raw5:sdc5
raw6:sdc6
1.2 Bind the raw device
/etc/init.d/raw start|status|stop
1.3 自動啟動rawdevices
#/sbin/chkconfig raw on
在REDHAT下:
1.1 vi /etc/sysconfig/rawdevices
/dev/raw/raw1 /dev/sdc1
/dev/raw/raw2 /dev/sdc2
/dev/raw/raw3 /dev/sdc3
/dev/raw/raw5 /dev/sdc5
/dev/raw/raw6 /dev/sdc6
1.2 啟動rawdevices服務
#service rawdevices start|status|stop
1.3 自動啟動rawdevices
#/sbin/chkconfig rawdevices on
##############################################################
2 修改RAW devcie 的屬主,許可權,Oracle使用者必須能夠訪問
##############################################################
chown oracle:dba /dev/raw/raw[1-6]
除了單檔案要修改許可權外,對檔案所在的目錄也要有訪問許可權
##############################################################
3 asm_diskstring中的語法問題
##############################################################
asm_diskstring='/dev/raw/raw1','/dev/raw/raw2' 分別用單引號,再用分號隔開。
alter system set asm_diskstring='/dev/raw/raw1','/dev/raw/raw2' scope=spfile;
alter system set asm_diskstring='/dev/raw/raw*' scope=spfile;
##############################################################
4 配置,使用RAW Device 磁碟組
##############################################################
1) 建立磁碟組
必須啟動ASM到nomount狀態
oracle>export ORACLE_SID=+ASM
oracle>sqlplus / as sysdba
SQL> startup nomount
SQL> create diskgroup test external redundancy disk '/dev/raw/raw*';
2) 在資料庫中使用
ASM磁碟級在RDBMS在使用必須先註冊
oracle>export ORACLE_SID=+ASM
oracle>sqlplus / as sysdba
SQL> alter system register;
oracle>export ORACLE_SID=test
oracle> sqlplus / as sysdba
SQL> create tablespace test datafile '+test/test01.dbf' size 50M;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10248702/viewspace-662863/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【轉】配置RAW Device磁碟組dev
- ASM學習筆記_配置ASMLIB磁碟組ASM筆記
- ASM學習筆記_磁碟的管理ASM筆記
- ASM學習筆記_ASM安裝ASM筆記
- 磁碟管理--學習筆記筆記
- asm 磁碟組 增刪磁碟組ASM
- Windows 下使用檔案模擬磁碟配置ASM磁碟組WindowsASM
- raw devicedev
- 全面學習和應用ORACLE ASM特性--(3)新增和修改asm磁碟組OracleASM
- ASM磁碟組限制ASM
- 配置rhel4的raw device servicedev
- 【ASM學習】手工刪除ASM磁碟組時提示錯誤ORA-15039ASM
- 【學習筆記】組合數學筆記
- 組合數學學習筆記筆記
- 遷移ASM磁碟組ASM
- linux下如何使用raw device來建立管理asm diskLinuxdevASM
- ASM學習筆記_體系結構ASM筆記
- Linux 核心學習筆記-磁碟篇Linux筆記
- raw device, first blockdevBloC
- about raw device[zt]dev
- ORACLE RAC重建ASM磁碟組OracleASM
- ASM磁碟組修改重建操作ASM
- ASM磁碟組空間不足ASM
- RAC之grid叢集安裝及ASM磁碟組配置ASM
- 組合語言學習筆記組合語言筆記
- bootstrap學習筆記 Bootstrap 列表組boot筆記
- 配置ASM磁碟-轉載ASM
- 全面學習和應用ORACLE ASM特性--(4)管理asm磁碟組中目錄和檔案OracleASM
- Swoft 學習筆記之配置筆記
- Elasticsearch的配置學習筆記Elasticsearch筆記
- 【ASM】Oracle asm磁碟被格式化,如何掛載該磁碟組ASMOracle
- 【ASM】Oracle asm刪除磁碟組注意事項ASMOracle
- ASM磁碟組更換磁碟的操作方法ASM
- 在ASM磁碟組中刪除一個磁碟ASM
- Raw Device vs File Systemdev
- 修改ASM磁碟組的屬性ASM
- ASM磁碟組刪除DISK操作ASM
- 修改ASM磁碟組冗餘模式ASM模式