- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mount problem
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
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
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
11-10-2003 05:09 PM
11-10-2003 05:09 PM
mount problem
I have two rp8400 in a clustered configuration. recently i created one mount point in one server that is not cluster aware and i have also entered its entry to /etc/fstab. but when i rebooted the system the file system was not mounted. What could be the reason?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 05:19 PM
11-10-2003 05:19 PM
Re: mount problem
But if just the NFS client is rebooted then the mount point should comeup by itself if correctly defined in /etc/fstab,
Are you able to mount it manually?
Have a look in /etc/rc.log do you see any error in nfs client startup
Also can we have a look at the entry you have put in /etc/fstab on nfs client (where you are mounting the filesystem)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 05:21 PM
11-10-2003 05:21 PM
Re: mount problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 05:26 PM
11-10-2003 05:26 PM
Re: mount problem
The AUTO_VG_ACTIVATE is set to 0. and i need to activate that volume groum manually. now if i chage that variable to 1 then will it effect cluster environment. because at that time all the volume group of that server will be activated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 05:34 PM
11-10-2003 05:34 PM
Re: mount problem
Look further down /etc/lvmrc and you'll see something like this.
custom_vg_activation()
{
# e.g. /sbin/vgchange -a y -s
# parallel_vg_sync "/dev/vg00 /dev/vg01"
# parallel_vg_sync "/dev/vg02 /dev/vg03"
/sbin/vgchange -a y /dev/vg00
From here you can see that "vg00" is activated from within this file. Just add a new entry under here for your new volume group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 05:53 PM
11-10-2003 05:53 PM
Re: mount problem
i donot find a entry for vg00. i am attaching the lvmrc file. please look in to it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 06:09 PM
11-10-2003 06:09 PM
Re: mount problem
If this is the case just add the following to your /etc/lvmrc file in the section we have been looking at
vgchange -a y -s /dev/vgwhatever for the volume group containing your filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 07:00 PM
11-10-2003 07:00 PM
Re: mount problem
i found the entry in rc.log. it shows
mountall: cannot mount /dev/billprnvg/lvol01
mountall: diagnostics from mount
vxfs mount: Cannot open /dev/billprnvg/lvol01: No such device or address
checking quotas
It because of the vg is not activated.
Should i put the entry in
custom_vg_activation()
{
# e.g. /sbin/vgchange -a y -s
/sbin/vgchange -a y -s billprnvg
# parallel_vg_sync "/dev/vg00 /dev/vg01"
# parallel_vg_sync "/dev/vg02 /dev/vg03"
return 0
}
In the second line. My vg name is billprnvg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2003 07:08 PM
11-10-2003 07:08 PM
Re: mount problem
This will confirm that the volume group is not already activated. You should get a message something like "volume group now activated"
vgchange -a y billprnvg
Now lets check that we can really mount the logical volume on a mount point
mount /dev/billprnvg /mnt
IF this works and you can see it mounted on /mnt in "bdf" then change /etc/lvmrc as discussed and as you have mentioned in your last post.
If the mount hasn't worked, I suspect that you haven't made the volume group correctly in the first place. But let me know how the above goes first.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2003 04:41 PM
11-11-2003 04:41 PM
Re: mount problem
I can mount manually. I will change the entry in that file