So if after reboot in Red Hat 5 your ASM disks disappear check if you done following things:
- Comment line in /etc/udev/rules.d/ 90-dm.rules
- Check in /etc/sysconfig/oracleasm if disk are not excluded
# ORACLEASM_ENABELED: 'true' means to load the driver on boot.
ORACLEASM_ENABLED=true
# ORACLEASM_UID: Default user owning the /dev/oracleasm mount point.
ORACLEASM_UID=oracle
# ORACLEASM_GID: Default group owning the /dev/oracleasm mount point.
ORACLEASM_GID=oinstall
# ORACLEASM_SCANBOOT: 'true' means scan for ASM disks on boot.
ORACLEASM_SCANBOOT=true
# ORACLEASM_SCANORDER: Matching patterns to order disk scanning
ORACLEASM_SCANORDER=""
# ORACLEASM_SCANEXCLUDE: Matching patterns to exclude disks from scan
ORACLEASM_SCANEXCLUDE="" - Check a file privileges
#KERNEL=="dm-[0-9]*", ACTION=="add", OPTIONS+="ignore_device"
it creates a /dev/dm-* devices after system reboot
After that you should see your ASM disks.
Regards,
Marcin
1 comments:
Perfect for a RAC analyast like me thanks a lot. i always wondered many such issues and sought in oracle metalink or asktom, but this one is superb. thanks for the low level manipulation to those problems.
Post a Comment