oracle 12c R1 對存放在asm磁碟中的password 進行移動

paulyibinyi發表於2015-12-29
  在oracle 12c R1版本中,密碼檔案放到asm磁碟組中,那密碼檔案在asm磁碟組中如何進行移動,
  比如放到另外一個磁碟組中

下面就是密碼檔案遷移方法 PWMOVE:

$$ ASM password file move (PWMOVE)::-----------
========================================

You can move ASM password file online in a running cluster in asmcmd using pwmove command.

Initially, the ASM password file was placed on a CRS diskgroup

$ crsctl stat res ora.asm -p|grep PWFILE
PWFILE=+CRS/asm/password/orapwasm

And cluster is up and running .

[oracle@ariidc1 archive]$crsctl check crs
CRS-4638: Oracle High Availability Services is online
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online

Move the ASM password file online using ASMCMD

$ asmcmd
ASMCMD> pwmove --asm +CRS/asm/password/orapwasm +data/orapwasm
moving +CRS/asm/password/orapwasm -> +data/orapwasm
ASMCMD> exit

Validated Cluster is up and running

[oracle@ariidc1 archive]$ crsctl check crs
CRS-4638: Oracle High Availability Services is online
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online

Validated new location of ASM password file.

[oracle@ariidc1 archive]$ crsctl stat res ora.asm -p|grep PWFILE
PWFILE=+data/orapwasm


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-1966623/,如需轉載,請註明出處,否則將追究法律責任。

相關文章