- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX can't NFS mount Linux
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
06-06-2003 08:28 AM
06-06-2003 08:28 AM
HP-UX can't NFS mount Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 08:32 AM
06-06-2003 08:32 AM
Re: HP-UX can't NFS mount Linux
A bit more information would be helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 08:34 AM
06-06-2003 08:34 AM
Re: HP-UX can't NFS mount Linux
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 08:43 AM
06-06-2003 08:43 AM
Re: HP-UX can't NFS mount Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 09:37 AM
06-06-2003 09:37 AM
Re: HP-UX can't NFS mount Linux
You need to start the NFS server, make sure your exports is formatted correctly, and then mount on HP-UX.
Test this by manually firing up NFS.
/etc/rc.d/init.d/nfs start
/etc/rc.d/init.d/nfslock start
Read the man pages on the /etc/exports file via.
man exports
Or use linuxconf and let it build for you.
Then export your file system with
exportfs -a
Use the run level editor to put nfs and nfslock into the appropriate run levels (I.E. 3-5)
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 09:39 AM
06-06-2003 09:39 AM
Re: HP-UX can't NFS mount Linux
lsmod will show which modules are loaded, pick one of the two following.
rmmod ip_tables
or
rmmod ip_chains
You will have to learn how to allow hosts full access if you need the firewall packages "AND" NFS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2003 10:36 AM
06-07-2003 10:36 AM
Re: HP-UX can't NFS mount Linux
For example, my exports reads this way
/mnt/datos hostname1(rw,secure,sync,insecure_locks,no_root_squash)
/mnt/datos hostname2(rw,secure,sync,insecure_locks,no_root_squash)
You could use async option to improve performance, buy at high risk.
Again, read the exports man page for the options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 10:42 AM
06-18-2003 10:42 AM
Re: HP-UX can't NFS mount Linux
I did still have problems with automount on the HP-UX side and it had something to do with the map files not being correct. To correct the problem, I set AUTOFS=1 (use new AUTOFS rather than old automount (=0)) in /etc/rc.config.d/nfsconf and did
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.client start
and everything began to work properly.
Again, Thanks very much for the responses!!