- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to disable all system's NFS processes?
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
05-13-2005 09:21 PM
05-13-2005 09:21 PM
How to disable all system's NFS processes?
NFS_CLIENT=0
NFS_SERVER=0
in /etc/rc.config.d/nfsconf. And restarted the server. But I found 'nfskd' and 'nfsktcpd' still in my system.
How to disable them?
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 10:14 PM
05-13-2005 10:14 PM
Re: How to disable all system's NFS processes?
Not 100% sure, but I think nfskd and nfsktcpd would disappear if you disabled NFS/9000 kernel subsystem. You can do this with SAM (SAM -> Kernel Configuration -> Subsystems -> Highlight NFS/9000 -> Actions -> Remove Subsystem from Kernel -> Process New Kernel -> reboot).
If I was you, I wouldn't bother. For the purpose of disabling NFS on the system, what you did is sufficient.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 04:08 AM
05-15-2005 04:08 AM
Re: How to disable all system's NFS processes?
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 12:25 PM
05-15-2005 12:25 PM
Re: How to disable all system's NFS processes?
But as I said earlier you shouldn't need to do this. If all you want is to disable NFS, setting NFS_CLIENT and NFS_SERVER to 0 in /etc/rc.config.d/nfsconf is sufficient.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 03:25 PM
05-15-2005 03:25 PM
Re: How to disable all system's NFS processes?
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 07:03 PM
05-15-2005 07:03 PM
Re: How to disable all system's NFS processes?
Normally i would prefer this way to stop NFS.
1. Ensure if any exported file system is not in use.
2. Stop NFS client daemon
# /sbin/init.d/nfs.server stop
3. Stop NFS server daemon
# /sbin/init.d/nfs.server stop
4. Stop NFS core daemon
# /sbin/init.d/nfs.core stop
This will stop NFS entirely.
Then if you disable it permanently and should start after rebot then you need to set following two parameters in /etc/rc.config.d/nfsconf.
NFS_CLIENT=0,NFS_SERVER=0
This should work.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 07:04 PM
05-15-2005 07:04 PM
Re: How to disable all system's NFS processes?
Read:
2. Stop NFS client daemon
# /sbin/init.d/nfs.server stop
as
2. Stop NFS client daemon
# /sbin/init.d/nfs.client stop
Regards,