Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot install masterdb on raw partition

Status
Not open for further replies.

spellbound1016

Technical User
Feb 5, 2002
8
US
I am attempting to install Sybase SQL 11.0.3 on Solaris and when I tell sybinit to intall the master device on a raw partition (/dev/rdsk/c0t1d0s3 for instance) it gives this message:

"Device /dev/rdsk/c0t1d0s3 must have read and write permissions."

I have made the partitions read-write, non-mountable (flag=wu) via the format command. What am I missing?

Much appreciation in advance for any help with this.
 
Have you given the ownership of the raw partition to sybase?

Code:
DO   chown sybase:dba /dev/rdsk/c0t1d0s3

and

DO   chmod 600 /dev/rdsk/c0t1dos3 

and then

DO   ls -l /dev/rdsk/c0t1dos3 

This should show something like

-rw-------    1 sybase   dba      268435456 Aug  2 01:00 /dev/rdsk/c0t1dos3

In the above "sybase" is the UNIX account for sybase group and "dba" is the group that sybase account belongs to. In your case you may have called them differently.

This should do the trick and good luck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top