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
10-05-2001 02:03 AM
10-05-2001 02:03 AM
list any files I will need to edit
to set up an NFS between two servers.
The NFS is to be permanent
so will require an entry in fstab (I think)
Cheers in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 02:09 AM
10-05-2001 02:09 AM
Solutionkey files and commands :
Edit /etc/rc.config.d/nfsconf
- Change NFS_CLIENT=1 to NFS_CLIENT=0.
- Change NFS_SERVER=1 to NFS_SERVER=0.
- /sbin/init.d/nfs.server start/stop
- /sbin/init.d/nfs.client start/stop
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 02:12 AM
10-05-2001 02:12 AM
Re: NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 02:13 AM
10-05-2001 02:13 AM
Re: NFS
At a basic level, edit the /etc/rc.config.d/nfsconf file on each machine to tell the system to start the correct server/client processes.
On the server, add the directories you wish to be available for mounting, and run exportfs to enable it.
On the client add an entry to /etc/fstab of the form:
server:/mnt /mnt nfs rw,hard 0 0 #mount from server
All these can be found in the man pages for:
nfs
exports
exportfs
fstab
Of course, there's a lot more to it than that, automounts, direct/indirect maps, etc. but this is the basics.
Rgds, Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 02:44 AM
10-05-2001 02:44 AM
Re: NFS
would the entry in fstab on bill be.
ben:/exports /steve nfs rw,hard 0 0
What do hard, and 0 0 mean ?
Cheers in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 03:58 AM
10-05-2001 03:58 AM
Re: NFS
"hard" is an option specific to nfs mounts, and it means:
Once the file system is mounted, retry subsequent NFS requests until server responds (default).
It is the default. To see the other possible options, run "man mount_nfs"
The first 0 is ignored (see man fstab), the second tells the system not to bother fsck'ing this filesystem at boot time.
Rgds, Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 05:12 AM
10-05-2001 05:12 AM
Re: NFS
Look at the thred below for more info.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/6-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/6-toc.html&searchterms=Configuring%20NFS%20Server&queryid=20011005-061313
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/42-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/42-toc.html&searchterms=Configuring%20NFS%20Server&queryid=20011005-061313
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 05:16 AM
10-05-2001 05:16 AM
Re: NFS
To learn more about the different options you can put in /etc/fstab for mounting a NFS filesystem look at the thread below and look for the section "To Change the Default Mount Options "
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/9-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/9-toc.html&searchterms=To%20Verify%20Your%20NFS%20Client%20Configuration%20%20&queryid=20011005-061726
Hope this explain all the options you may want to know about.
Thanks