- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS configuration
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
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
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-31-2010 07:12 AM
тАО03-31-2010 07:12 AM
need your help.
Want to configure / share a file system via NFS.
Can you please explain simple steps to be done on both nodes....
Thanks for your ever support.....
Best Regards,
LN
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2010 07:16 AM
тАО03-31-2010 07:16 AM
Re: NFS configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2010 07:19 AM
тАО03-31-2010 07:19 AM
Re: NFS configuration
I am using HP-UX 11iv1
Thanks for your quick response.
LN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2010 09:11 PM
тАО03-31-2010 09:11 PM
SolutionAdd a line to the /etc/exports file for each directory you want to
make available to NFS clients
Edit the exports file vi /etc/exports and add:
/dir/to/export host1.mydomain.com(ro,root_squash)
/dir/to/export host2.mydomain.com(ro,root_squash)
Where:
/dir/to/export is the directory you want to export.
host#.mydomain.com is the machine allowed to log in this directory.
The ro option mean mounting read-only.
The root_squash option for not allowing root write access in this directory.
For this change to take effect you will need to run the following command on your terminal:
[root@deep]# /usr/sbin/exportfs -a
Then make changes in /etc/rc.config.d/nfsconf
NFS_SERVER=1
START_MOUNTD=1
one more think to check /etc/inetd.conf file on NFS server does not contain
a line to start rpc.mountd. If it does, make sure the START_MOUNTD
variable in /etc/rc.config.d/nfsconf is set to 0.
allows to start and stop the daemons processes using
# /sbin/init.d/nfs.server start
# /sbin/init.d/nfs.server stop
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
on the NFS-Client demons are
rpc.lockd and rpc.statd for file locking
biod I/O Organization
automountd if you like or need it
make changes in /etc/rc.config.d/nfsconf
NFS_CLIENT=1
for allows to start and stop the daemons processes using
# /sbin/init.d/nfs.client start or
# /sbin/init.d/nfs.client stop
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-01-2010 03:35 AM
тАО04-01-2010 03:35 AM
Re: NFS configuration
Thanks for your help and reply...
got your points...
Best Regards,
LN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-01-2010 03:36 AM
тАО04-01-2010 03:36 AM