- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- filesystem disappears after reboot
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 09:13 PM
тАО09-17-2006 09:13 PM
filesystem disappears after reboot
seems that after the reboot of the hp-ux machine, two filesystems disappeared. there are no entries in the fstab for the filesystems. that is a configuration mistake.
there are two volume groups, vg00 and drootvg both of them are active. the filesystems i am talking about were in the droot volume group. the logical volumes exist,both of them, but seem to be unused.
is there any way to recover the data?
is there any way to mount the logical volumes?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 09:21 PM
тАО09-17-2006 09:21 PM
Re: filesystem disappears after reboot
do ls -l /dev/vg00
Note the names of logical volumes/filesystems which are not mounted.
Use mount command to mount it.
mkdir /mountpoint
mount -F vxfs /dev/vg00/lvolXX /mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 09:24 PM
тАО09-17-2006 09:24 PM
Re: filesystem disappears after reboot
the volume group is drootvg
do you mean ls -l /dev/dootvg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 09:32 PM
тАО09-17-2006 09:32 PM
Re: filesystem disappears after reboot
right
ls -l /dev/drootvg
make same change for mount command also
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 10:00 PM
тАО09-17-2006 10:00 PM
Re: filesystem disappears after reboot
If there are no entries for the filesystems in /etc/fstab then after reboot the filesystems wont be mounted automatically.
The entry into /etc/fstab is not automatic - but you need to put the entries manually yourself for the filesystems you wish to be mounted when you system comes up.
Please see the format in which the entries must be added by cat /etc/fstab and man fstab to understand the format. Then if say your filesystem is /dev/dgroot/lvol1 then your entry at the end of the /etc/fstab file will be something like this
/dev/dgroot/lvol1 /mountpoint vxfs rw 0 2
and so on for all the filesystems.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 10:11 PM
тАО09-17-2006 10:11 PM
Re: filesystem disappears after reboot
yep the logical volumes are in the volume group /dev/drootvg/ directory.
mounting them to a mount directory , no matter what the previous mount directory was, will work?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 10:19 PM
тАО09-17-2006 10:19 PM
Re: filesystem disappears after reboot
Mounting to any directory this time will work , no matter what directory/mount-point you had used earlier.
But again as I said, please make entry in /etc/fstab if you wish the filesystem to be automatically mounted at system startup.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 10:20 PM
тАО09-17-2006 10:20 PM
Re: filesystem disappears after reboot
you can mount it on any directory you want.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-17-2006 10:30 PM
тАО09-17-2006 10:30 PM
Re: filesystem disappears after reboot
check the volume group
vgdisplay -v volume_group
see if is activated
check the logical volumes if they are created
use sam , disk and group logical volumes
or ls -ltr /dev/volume_group
check fstab entries
if there are entries and the filesystems are not mounted
check the file /etc/rc.log check also dmesg
if entries do not exists in the fstab file (etc/fstab)
then
create a mount point and mount the filesystem
thank you