- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS Server and Client Installation
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
02-20-2005 08:54 PM
02-20-2005 08:54 PM
I need to configure NFS Server and Client.
What are the software bundle requirements for NFS Server and Client on HP-UX 11.11?
Thanks/cliff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 09:01 PM
02-20-2005 09:01 PM
Solutioni wonder if ther is any software of NFS SERVER/Client.
But the normal process of configuring NFS server/client is as follows.
edit file
#vi /etc/rc.config.d/nfsconf
NFS_CLIENT=1 -- > for the server which acts a client.
NFS_SERVER=1 -- > for the server which acts as a client.
after this ..
just start the nfs client/server process.
#/sbin/init.d/nfs.client start
#/sbin/init.d/nfs.server start
in the NFS server list the files/FS u want to share.
#vi /etc/exports
/data1
u can mount the same across the NFS clients.
just seach docs.hp.com u will get lots of docs.
hope this helps/
Regards,
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 09:01 PM
02-20-2005 09:01 PM
Re: NFS Server and Client Installation
No extra software is needed. You could check if you have the latest nfs patches.
# cd /etc/rc.config.d/nfsconf
change the
NFS_CLIENT=0 into 1
NFS_SERVER=0 into 1
:wq!
# /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.server start
# /sbin/init.d/nfs.client start
Now you can export and import filesystems.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2005 09:07 PM
02-20-2005 09:07 PM
Re: NFS Server and Client Installation
cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2005 12:09 AM
02-21-2005 12:09 AM
Re: NFS Server and Client Installation
You need to check if you are in run-level 3 to start nfs server daemon.
Check the o/p of "who -u" command.
Regards,