Hi, I have an oracle rac of two nodes on vmware server. My nodes have Suse Linux Enterprise Server 10 (SLES 10). I have 5 raw devices (1 for OCR, 1 for votingdisk, and 3 for ASM) in /dev/raw/raw1....5
Ok, the own of that devices is root and the permission is
$ l
crw-rw---- oracle disk .... /dev/raw/raw1
crw-rw---- oracle disk .... /dev/raw/raw2
crw-rw---- oracle disk .... /dev/raw/raw3
crw-rw---- oracle disk .... /dev/raw/raw4
crw-rw---- oracle disk .... /dev/raw/raw5
I know that if I change the own of these devices and I add the rw to others, then all is ok and works it. then I put these sentences in /etc/rc.d/boot.local
chown oracle:oinstall /dev/raw/raw1
chown oracle:oinstall /dev/raw/raw2
chown oracle:oinstall /dev/raw/raw3
chown oracle:oinstall /dev/raw/raw4
chown oracle:oinstall /dev/raw/raw5
chmod a+rw oracle:oinstall /dev/raw/raw1
chmod a+rw oracle:oinstall /dev/raw/raw2
chmod a+rw oracle:oinstall /dev/raw/raw3
chmod a+rw oracle:oinstall /dev/raw/raw4
chmod a+rw oracle:oinstall /dev/raw/raw5
but it does not work, Anyone can help me?