- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /sbin/init.d/nfs.core.... can be disabled ?
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-05-2003 02:23 AM
02-05-2003 02:23 AM
it starts 'RPC' listening on UDP ports... for security reasons I'm interested to prevent this.
What is it for nfs.core?
how can it be disabled in startup ?
Thanx in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:28 AM
02-05-2003 02:28 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
have a look at /etc/rc.config.d/nfsconf
good luck,
Thiery.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:34 AM
02-05-2003 02:34 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
Core NFS comes along with OS as core DCE/SNAPlus.
for your secirity reason if you disable these services that's more than sufficient.
(#/sbin/init.d/nfs.server stop
#/sbin/init.d/nfs.client stop
set the flag to 0 in /etc/rc.config.d/nfsconf file
i.e NFS_SERVER=0
NFS_CLIENT=0)
You can remove the core NFS by using
#swremove -i
(choose the NFS and remove)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:35 AM
02-05-2003 02:35 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
please edit /etc/rc.config.d/nfsconf and set client and server to "0":
NFS_CLIENT="0"
NFS_SERVER="0"
I'm not sure, but nfs.core seams to be the main service you need if you wants to have the system working as nfs-client or nfs-server.
You can stop nfs.core by following command:
# /sbin/init.d/nfs.core stop
And you can (but only if you are sure what you do) move the start-, killscript out of the way that the system didn't start it by next reboot:
# mv /sbin/rc2.d/S400nfs.core /tmp/nfs/rc2/
# mv /sbin/rc1.d/K600nfs.core /tmp/nfs/rc1/
Hope that helps.
Regards ...
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 03:36 AM
02-05-2003 03:36 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
NFS_CLIENT=0
NFS_SERVER=0
I don't want to remove the NFS product because, perhaps, I'll need it in the future. I just want to disable.
My main question is: why nfs.core is started if client and server services aren't configured to run ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 04:08 AM
02-05-2003 04:08 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
Because scripts are in /sbin/rc2.d for core nfs to start, if you don't want to start
#cd /sbin/rc2.d
#unlink S400nfs.core
#unlink S430nfs.client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 04:08 AM
02-05-2003 04:08 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
Because scripts are in /sbin/rc2.d for core nfs to start, if you don't want to start
#cd /sbin/rc2.d
#unlink S400nfs.core
#unlink S430nfs.client
#reboot
now nfs.core wouldn't start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 04:19 AM
02-05-2003 04:19 AM
SolutionIndeed the params are set in /etc/rc.config.d/nfsconf.
The following should be set to 0 -->
NFS_CLIENT
NFS_SERVER
AUTOMOUNT
START_MOUNTD
If the first two options are set to 0, both client and server process terminate immediatly. So no big deal in that. For the core, you can always mv the S400nfs.core to s400nfs.core
This way (the lower case "s") you keep spotting it, but it will not be executed anymore, and off course this will have to be done with the "k"-file as well.
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 07:57 AM
02-07-2003 07:57 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
you should be aware that nfs.core starts the rpcbind process, which can register other applications like nfs or nis. So you should first check with "rpcinfo -p", if anything important is registered at rpcbind, before disabling nfs.core.
Cheers,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 09:46 AM
02-07-2003 09:46 AM
Re: /sbin/init.d/nfs.core.... can be disabled ?
Chris