程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle ASM 和Oracle緊密集成的緣由

Oracle ASM 和Oracle緊密集成的緣由

編輯:Oracle數據庫基礎

我們都知道Oracle ASM 和 Oracle 數據庫是緊密集成的,並且和 Oracle 數據管理的相關工具套件一起配合工作。它可以是簡化的數據庫存儲管理,並且可以提供原始磁盤 I/O 的相關性能。

配置 ASMLib。以 root 用戶身份在兩個節點上配置Oracle ASMLib。

  1. # /etc/init.d/Oracleasm configure  
  2. Configuring the Oracle ASM library driver.  
  3. This will configure the on-boot propertIEs of the Oracle ASM library  
  4. driver. The following questions will determine whether the driver is  
  5. loaded on boot and what permissions it will have. The current values  
  6. will be shown in brackets ('[]'). Hitting without typing an  
  7. answer will keep that current value. Ctrl-C will abort.  
  8. Default user to own the driver interface []: Oracle  
  9. Default group to own the driver interface []: dba  
  10. Start Oracle ASM library driver on boot (y/n) [n]: y  
  11. Fix permissions of Oracle ASM disks on boot (y/n) [y]: y  
  12. Writing Oracle ASM library driver configuration: [ OK ]  
  13. Loading module "Oracleasm": [ OK ]  
  14. Mounting ASMlib driver filesystem: [ OK ]  
  15. Scanning system for ASM disks: [ OK ]  

創建Oracle ASM 磁盤。以 root 用戶身份在任何一個節點上創建 ASM 磁盤。

  1. # /etc/init.d/Oracleasm createdisk VOL1 /dev/sdc1  
  2. Marking disk "/dev/sdc1" as an ASM disk: [ OK ]  
  3. # /etc/init.d/Oracleasm createdisk VOL2 /dev/sdd1  
  4. Marking disk "/dev/sdd1" as an ASM disk: [ OK ]  
  5. # /etc/init.d/Oracleasm createdisk VOL3 /dev/sde1  
  6. Marking disk "/dev/sde1" as an ASM disk: [ OK ]  
  7. Verify that the ASM disks are visible from every node.   
  8. # /etc/init.d/Oracleasm scandisks  
  9. Scanning system for ASM disks: [ OK ]  
  10. # /etc/init.d/Oracleasm listdisks  
  11. VOL1  
  12. VOL2  
  13. VOL3  
  14. VOL4 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved