Operating System - HP-UX
1833589 Members
4390 Online
110061 Solutions
New Discussion

Re: Mount point not visible

 
SOLVED
Go to solution
Musa I. S.
Frequent Advisor

Mount point not visible

Hello,

one of my mountpoints /applprod1 is not visible. this happened after the systems went off. please view attachment for bdf, fstab, lvmtab and mnttab.

16 REPLIES 16
Jeeshan
Honored Contributor

Re: Mount point not visible

mount it manually
#mount /dev/vgapplprod1/applprod1 /applprod1


but before that verify that the vg is not offline

#vgdisplay -v vgapplprod1

if its in offline then turn it to online and then mount.
a warrior never quits
Musa I. S.
Frequent Advisor

Re: Mount point not visible

hello,

below is the response i got when i tried to mount manually.


HQ-DEVP:/#mount /dev/vgapplprod1/applprod1 /applprod1
mount: /dev/vgapplprod1/applprod1: No such file or directory
Jeeshan
Honored Contributor

Re: Mount point not visible

did you try this command?

#vgdisplay -v vgapplprod1
a warrior never quits
Musa I. S.
Frequent Advisor

Re: Mount point not visible

Yes i did. the status reads available.
Jeeshan
Honored Contributor

Re: Mount point not visible

if so than check that the applprod1 folder has been exist in / file system. if not exist than create it and mount again.
a warrior never quits
Musa I. S.
Frequent Advisor

Re: Mount point not visible

there are two mount points applprod1 and applprod2. Please view the output below. the owner is different...

drwxrwxrwx 3 root sys 96 Jun 25 16:14 applprod1
drwxr-xr-x 6 root root96 Dec 24 2007 applprod2
Jeeshan
Honored Contributor

Re: Mount point not visible

so, can u mount it?

or ownership discard you?
a warrior never quits
Musa I. S.
Frequent Advisor

Re: Mount point not visible

i still cannot mount it.
Ernesto Cappello
Trusted Contributor

Re: Mount point not visible

Hi Musa this is your /etc/mnttab file:


/dev/vg00/lvol3 / vxfs ioerror=nodisable,log,dev=40000003 0 1 1215425037
/dev/vg00/lvol1 /stand hfs defaults,dev=40000001 0 0 1215425038
/dev/vg00/lvol9 /var vxfs ioerror=mwdisable,delaylog,dev=40000009 0 0 1215425042
/dev/vg00/lvol8 /usr vxfs ioerror=mwdisable,delaylog,dev=40000008 0 0 1215425043
/dev/vg00/lvol7 /tmp vxfs ioerror=mwdisable,delaylog,dev=40000007 0 0 1215425043
/dev/vg00/lvol6 /syscrash vxfs ioerror=mwdisable,delaylog,dev=40000006 0 0 12154
25043
/dev/vg00/lvol5 /opt vxfs ioerror=mwdisable,delaylog,dev=40000005 0 0 1215425043
/dev/vg00/lvol4 /home vxfs ioerror=mwdisable,delaylog,dev=40000004 0 0 121542504
3
/dev/vgapplprod2/applprod2 /applprod2 vxfs ioerror=mwdisable,delaylog,dev=400100
01 0 0 1215425043
-hosts /net autofs ignore,indirect,nosuid,soft,nobrowse,dev=60000000 0 0 1215425
080

i can't find the row for /dev/vgapplprod2/applprod1.

Have you forgotten it?
BR.
Ernesto

Ernesto Cappello
Trusted Contributor

Re: Mount point not visible

Sorry the roght path is:

/dev/vgapplprod1/applprod1

and the row is:

/dev/vgapplprod1/applprod1 /applprod1 vxfs ioerror=mwdisable,delaylog,dev=400100
01 0 0 1215425043

BR.
Ernesto
TTr
Honored Contributor
Solution

Re: Mount point not visible

> Yes i did. the status reads available

Post "vgdisplay -v /dev/vgapplprod1"

Check if the lvol device file for applprod1 exists. Post "ll /dev/vgapplprod1"
Musa I. S.
Frequent Advisor

Re: Mount point not visible

Hello,

find below vgdisplay.



HQ-DEVP:/#vgdisplay -v /dev/vgapplprod1
--- Volume groups ---
VG Name /dev/vgapplprod1
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 1
Open LV 1
Max PV 16
Cur PV 1
Act PV 1
Max PE per PV 25599
VGDA 2
PE Size (Mbytes) 8
Total PE 25596
Alloc PE 25000
Free PE 596
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0

--- Logical volumes ---
LV Name /dev/vgapplprod1/lvapplprod1
LV Status available/syncd
LV Size (Mbytes) 200000
Current LE 25000
Allocated PE 25000
Used PV 1


--- Physical volumes ---
PV Name /dev/dsk/c32t0d2
PV Name /dev/dsk/c36t0d2 Alternate Link
PV Name /dev/dsk/c24t0d2 Alternate Link
PV Name /dev/dsk/c28t0d2 Alternate Link
PV Status available
Total PE 25596
Free PE 596
Autoswitch On


HQ-DEVP:/#
Ernesto Cappello
Trusted Contributor

Re: Mount point not visible

Hi Musa,
have you inserted the following row:

/dev/vgapplprod1/applprod1 /applprod1 vxfs ioerror=mwdisable,delaylog,dev=400100
01 0 0 1215425043

on your /etc/mnttab file?

Best regards.
Ernesto
TTr
Honored Contributor

Re: Mount point not visible

< EC: have you inserted the following row ...on your /etc/mnttab file?

You do not edit the mnttab file. It is a dynamic file that is created by the mount command during bootup and during any subsequent mounts.

The problem is the name of the LV volume. You are using /dev/vgapplprod1/applprod1 in your /etc/fstab but the actual name of the logical volume is

LV Name /dev/vgapplprod1/lvapplprod1

Edit your /etc/fstab file and correct the name and then issue a mount command

"mount /applprod1"

This way the spelling of /etc/fstab is also verified for the new edited entry.
Musa I. S.
Frequent Advisor

Re: Mount point not visible

TTr,

Thank you very much. In addition to solving my problem, u made me understand mnttab.

Thank you.
Musa I. S.
Frequent Advisor

Re: Mount point not visible

thanks.