- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: exportfs and 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
03-16-2005 03:25 AM
03-16-2005 03:25 AM
exportfs and mount problem.
//dev/vg_nd01/data110 -access=ab_01
(Note //dev/vg_nd01/data110 is 1GB size with no data)
After using the command exportfs -a on ab_03, it reported no error.
On server ab_01, I tried to mount the exported file to /a and the result is shown as
ab_03:/dev/vg_nd01/data110
143360 69582 69184 50% /a
You can see that 143360KB is used.
Also when you try to umount it, it says
umount: cannot unmount /a : Invalid argument.
What do I do? urgent!
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 03:42 AM
03-16-2005 03:42 AM
Re: exportfs and mount problem.
Did you try:
umount ab_03:/dev/vg_nd01/data
If so do did you make sure that the mountpoint is not busy. * fuser command?
can you provide the output of
cat /etc/mnttab | grep /a
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 03:44 AM
03-16-2005 03:44 AM
Re: exportfs and mount problem.
Say /dev/vg_nd01/data110 is mounted to /abc123
Your exports file should be:
/abc123 -access=ab_01
Then run 'exportfs -av' and try mounting.
Is this the only NFS mount you have?
If so, try:
umount -a -F nfs
That will attempt to unmount ALL mounted NFS filesystems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 04:25 AM
03-16-2005 04:25 AM
Re: exportfs and mount problem.
Patrick is right, mount points are normally exported
if you trying it like root from ab_01
add -root=ab_01 to exportfs file
if you want better security, add anon=-2
and unknown users gonna have access like nobody
rgds Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 04:49 AM
03-16-2005 04:49 AM
Re: exportfs and mount problem.
umount: cannot unmount /a : Invalid argument
The result of cat /etc/mnttab |grep /a
ab_01:/ # cat /etc/mnttab |grep /a
/dev/vg_filesys/arbor /opt/arbor vxfs log,nodatainlog 0 0 1110624472
/dev/vg_filesys/archive /var/archive vxfs log,nodatainlog 0 0 1110624474
ab_s_03a:/dev/vg_nd01/data110 /a nfs defaults 0 0 1110986335
The result of umount -a -F nfs:
umount: cannot unmount /a : Invalid argument
What do I do next?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 07:43 PM
03-16-2005 07:43 PM
Re: exportfs and mount problem.
Please assist urgently!
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2005 11:33 PM
03-20-2005 11:33 PM
Re: exportfs and mount problem.
reboot ab_01 and retry with the settings Patrick mentioned.
Volkmar