- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HPUX and NFS
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-01-2006 12:00 AM
02-01-2006 12:00 AM
In the past few years, NFS was something that other unix admins didn't like to work with and was just wondering if this is still the case.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 12:12 AM
02-01-2006 12:12 AM
Re: HPUX and NFS
You might want to start by taking a look at the man page for exportfs.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 12:18 AM
02-01-2006 12:18 AM
Solution1. Edit /etc/rc.config.d/nfsconf
NFS_CLIENT=1
NFS_SERVER=1
2. edit /etc/exports file. Add filesystems with desired permissions to be exported.
See "man exports" for more details.
3. # /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.server start
4. # exportfs -a
This will export all your filesystems in /etc/exports file.
That's all for NFS server.
Similarly for client:
1. Edit /etc/rc.config.d/nfsconf
NFS_CLIENT=1
NFS_SERVER=0
2. # /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.client start
3. # mount
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 12:29 AM
02-01-2006 12:29 AM
Re: HPUX and NFS
we have a SAN env and remember the engineer that installed it mention that if we were using NFS there is a different procedure for configuring disks etc...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 12:33 AM
02-01-2006 12:33 AM
Re: HPUX and NFS
The older the NFS, the harder it is to run.
Version three which is more or less current has troubles with locking files, uses random ports in a range, and creates hassles for admins.
Version 2 was UDP which made it terribly unreliable.
Version 4, which is new supposedly eliminates many of these issues.
You can use Samba to Integrate your system into a Windows domain and avoid some of the pitfalls of NFS.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 01:23 AM
02-01-2006 01:23 AM
Re: HPUX and NFS
The best choice for NFS is a dedicated (separate) LAN without any routers between the source machines. This is especially important if the NFS is going to transfer a lot of data for long periods of time. Be sure all the NFS patches are installed and be sure to get a copy of Dave Olker's book on NFS:
http://www.amazon.com/gp/product/0130428167/qid=1138802568/sr=1-1/ref=sr_1_1/103-6137958-9813419?s=books&v=glance&n=283155
Note that NFS is much slower than the slowest disk even with 100 Mbit links. A slow disk might transfer data at 20 Mbytes/sec, but you can expect about 50% throughput with a clean 100Mbiit link (which means 5 Mbytes/sec).
Since you have the latest OS (11.23v2), if you are up to date on patches, and the NFS is between other 11.23v2 servers on a dedicated LAN, you should be OK. I would never use NFS from a PC on a production system. SAMBA (CIFS) seems to have less problems with hangs but be sure the latest patches are in place on the PC. I would try NFS on your test boxes first.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 01:44 AM
02-01-2006 01:44 AM
Re: HPUX and NFS
NFS is still good in very big networks ~5000 servers of different OS like we use. We have had very little outage in last few years. It is very good and easy to manage.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 01:46 AM
02-01-2006 01:46 AM
Re: HPUX and NFS
Here is a good guide to setting up NFS on 11iV2,
http://docs.hp.com/en/5991-1811/index.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 01:50 AM
02-01-2006 01:50 AM
Re: HPUX and NFS
He is one of the world experts on it.
When you have 11i v2, install NFS 4 and use that.
Note that the Samba client runs on top of the NFS client anyway.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2006 04:19 AM
02-01-2006 04:19 AM
Re: HPUX and NFS
Thanks for all the nice plugs on my book. :)
One point - HP-UX does not yet support NFS Version 4, even on 11i v2. We will be adding support for NFSv4 on 11i v3. So there is no way to install NFS Version 4 on an HP-UX system at this time.
One other white paper I'd suggest for your reading pleasure would be:
http://docs.hp.com/en/1435/NFSPerformanceTuninginHP-UX11.0and11iSystems.pdf
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
