Unable to mount Metadevice


 
Thread Tools Search this Thread
Operating Systems Solaris Unable to mount Metadevice
# 1  
Old 05-01-2010
Unable to mount Metadevice

Hi,

I am running Solaris 8 on a V880 which has recently crashed. It has got a fibre connection to a StorageTrek array containing my database info. Since the crash I have been unable to mount the 2 metadevices which correspond to /spool & /apps - these FS's contain my db info and theredore I cannot access my db.

I am sure somebody must have come across this before. The output below explains my situation:

Code:
metpmtc1:# metastat d501
d501: Soft Partition
    Component: d39
    State: Okay
    Size: 157286400 blocks
        Extent              Start Block              Block count
             0                    10177                157286400

d39: Concat/Stripe
    Size: 1286653440 blocks
    Stripe 0: (interlace: 128 blocks)
        Device     Start Block  Dbase State        Hot Spare
        c1t1d0s0          0     No    Okay         
        c1t2d0s0      10176     No    Okay         
        c1t3d0s0      10176     No    Okay         
        c1t4d0s0      10176     No    Okay         
        c2t1d0s0      10176     No    Okay         
        c2t2d0s0      10176     No    Okay         
        c2t3d0s0      10176     No    Okay         
        c2t4d0s0      10176     No    Okay         
        c2t5d0s0      10176     No    Okay

Code:
metpmtc1:# mount /dev/dsk/md/501 /spool 
mount: /dev/dsk/md/501 is already mounted, /spool is busy,
        or the allowable number of mount points has been exceeded
metpmtc1:# 
metpmtc1:# fstyp /dev/dsk/md/501
fstyp: cannot stat or open </dev/dsk/md/501>
metpmtc1:# 
metpmtc1:# fsck /dev/dsk/md/501
Can't stat /dev/dsk/md/501

Regards,
Duffs.

Last edited by DukeNuke2; 05-01-2010 at 09:34 AM..
# 2  
Old 05-01-2010
Post the output of #mount command.

Thanks,
deepak
# 3  
Old 05-01-2010
Hi,

Here it is however I have got the FS's commented out in the vfstab:

Code:
metpmtc1:# mount
/ on /dev/md/dsk/d30 read/write/setuid/intr/largefiles/onerror=panic/dev=154001e on Sat May  1 02:51:54 2010
/proc on /proc read/write/setuid/dev=5200000 on Sat May  1 02:51:53 2010
/dev/fd on fd read/write/setuid/dev=52c0000 on Sat May  1 02:51:57 2010
/etc/mnttab on mnttab read/write/setuid/dev=53c0000 on Sat May  1 02:51:59 2010
/var on /dev/md/dsk/d34 read/write/setuid/intr/largefiles/onerror=panic/dev=1540022 on Sat May  1 02:52:00 2010
/var/run on swap read/write/setuid/dev=1 on Sat May  1 02:52:01 2010
/tmp on swap read/write/setuid/dev=2 on Sat May  1 02:52:08 2010
/spool01 on /dev/dsk/c1t5d0s0 read/write/setuid/intr/largefiles/onerror=panic/dev=1d800d0 on Sat May  1 02:52:08 2010
/users on /dev/md/dsk/d33 read/write/setuid/intr/largefiles/onerror=panic/dev=1540021 on Sat May  1 02:52:08 2010
/admin on /dev/md/dsk/d35 read/write/setuid/intr/largefiles/onerror=panic/dev=1540023 on Sat May  1 02:52:08 2010

R,
D.

Last edited by DukeNuke2; 05-01-2010 at 09:34 AM..
# 4  
Old 05-01-2010
Quote:
Originally Posted by Duffs
Hi,


metpmtc1:# mount /dev/dsk/md/501 /spool
mount: /dev/dsk/md/501 is already mounted, /spool is busy,
or the allowable number of mount points has been exceeded
metpmtc1:#
metpmtc1:# fstyp /dev/dsk/md/501
fstyp: cannot stat or open </dev/dsk/md/501>
metpmtc1:#
metpmtc1:# fsck /dev/dsk/md/501
Can't stat /dev/dsk/md/501


Regards,
Duffs.


Use "/dev/md/dsk/d501" insted of "/dev/dsk/md/501" in all above commands.You are not writing "d" in the name of metadevice and writing wrong device path name.
# 5  
Old 05-01-2010
Hi,

Thanks for noticing my typo but unfortunately it makes no difference:

Code:
metpmtc1:# mount /dev/dsk/md/d501 /spool
mount: /dev/dsk/md/d501 is already mounted, /spool is busy,
        or the allowable number of mount points has been exceeded
metpmtc1:# 
metpmtc1:# fstyp /dev/dsk/md/d501
fstyp: cannot stat or open </dev/dsk/md/d501>

R,
D.

Last edited by Scott; 05-01-2010 at 05:03 PM.. Reason: Code tags, PLEASE!
# 6  
Old 05-01-2010
Sorry, I edited my reply as I to made some typo mistake.
So, please check previous reply again.

And if still you get the error "/spool is busy" then just do following :

Code:
#rmdir /spool
#mkdir /spool

And then try to mount on it again...
# 7  
Old 05-01-2010
Hi,

No joy:

Code:
metpmtc1:# rm -rf /spool
metpmtc1:# mkdir -p /spool
metpmtc1:# mount /dev/dsk/md/d501 /spool
mount: /dev/dsk/md/d501 or /spool, no such file or directory

I think it has got more to do with losing its pseudo path:

Code:
metpmtc1:# ls -l /dev/md/dsk/d502
lrwxrwxrwx   1 root     root          38 Apr 14  2005 /dev/md/dsk/d502 -> ../../../devices/pseudo/md@0:0,502,blk
metpmtc1:# ls -l /dev/md/dsk/d501
lrwxrwxrwx   1 root     other         38 Apr 30 17:55 /dev/md/dsk/d501 -> ../../../devices/pseudo/md@0:0,501,blk

R,
D,

Last edited by Scott; 05-01-2010 at 05:04 PM.. Reason: Code tags, PLEASE!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unable to mount /cache and all in mobile

Hi Not sure if i can post here on the Android Phone OS issue, dint find any solutions on the android forums.. thought to give a try here my phone has an issue and is not able to mount /cache, /format and all, and the OS doesnt not boot, even while trying to load a new OS it says: "FAILED... (4 Replies)
Discussion started by: nanz143
4 Replies

2. UNIX for Dummies Questions & Answers

Unable to mount NFS

Hello, While mounting NFS below error is coming: # mount -t nfs 10.65.150.69:/lvsnap /lvsnap mount: mount to NFS server '10.65.150.69' failed: RPC Error: Program not registered. Please advise. Best regards, Vishal (2 Replies)
Discussion started by: admin_db
2 Replies

3. Red Hat

Unable to mount.

Hi, I am unable to mount the AIX share on Red Hat Linux 5.5 getting below error on linux server while mounting. reason given by server: unknown nfs status return value: -1 I have checked on AIX side. lssrc -g nfs showing below output. bash-3.00# lssrc -g nfs Subsystem ... (2 Replies)
Discussion started by: manoj.solaris
2 Replies

4. UNIX for Dummies Questions & Answers

Unable to mount CD rom

hi Am trying to mount a cdrom which has a blank cd into it, using the command: mount -v cdrfs -o ro /dev/cd0 /mnt Am getting this error: # df -Ig Filesystem GB blocks Used Free %Used Mounted on /dev/hd4 0.50 0.19 0.31 38% / /dev/hd2 ... (1 Reply)
Discussion started by: kamaldev
1 Replies

5. UNIX for Dummies Questions & Answers

Unable to mount CDROM

Hi I have created a RHEL6 machine that is hosted on VMWare player that in turn runs off my Windows 7 PC. When I try and mount the CDROM on the RHEL6 box I get the following output: $ mount /dev/cdrom/media mount: can't find /dev/cdrom/media in /etc/fstab or /etc/mtab $ Here is the... (3 Replies)
Discussion started by: accipiter1
3 Replies

6. Debian

Unable to mount external drive

Trying to mount an external 160GB Toshiba drive but.... this is my dmesg tail output: usb 2-2: new high speed USB device using ehci_hcd and address 3 usb 2-2: New USB device found, idVendor=13fd, idProduct=1618 usb 2-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0 usb 2-2:... (4 Replies)
Discussion started by: Ridson
4 Replies

7. Ubuntu

Unable to mount disk

I am running Ubuntu Server, I recently added a new hard drive to the machine When I run fdisk -l I see both drives. The recently added drive is present but it's listed as extended. when I try to mount the drive it says you must specify the file system type. I can't mount this drive, I was... (2 Replies)
Discussion started by: NelsonC
2 Replies

8. Fedora

unable to mount NTFS

Hi, I'm new for unix. I tried to mount windows NTFS partition in Fedora unix, but it is saying ntfs not found. The command i used is mount /dev/sdb1 -t ntfs /mnt/drive1 and how to find the available filesystem type?. (1 Reply)
Discussion started by: gwgreen1
1 Replies

9. Solaris

/usr unable to mount

Hi All, I need help on this issue and it is a production server. /usr is unable to mount and make system can't even type any commands. Only this show and no changes makes to the system. ERROR: svc:/system/filesystem/root:default failed to mount /usr (see 'svcs -x' for details) ... (3 Replies)
Discussion started by: mailbox80
3 Replies

10. AIX

AIX 4.3 - unable to mount one of our VG's

AFter a hardware issue - scsi controller replaced and hadware is now functioning again . Able to mount all VG except one. Need AIX 4.3 experience to assist... Thanks (0 Replies)
Discussion started by: pmcopoc
0 Replies
Login or Register to Ask a Question