Results 1 to 3 of 3
I want to turn off several services which I do not use (I think?) whenI connect to the internet. These are (in rc.0 order): httpd, mysql, samba, nfsd, rpc, sshd, ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-05-2008 #1Linux User
- Join Date
- Mar 2008
- Posts
- 287
Stopping services
I want to turn off several services which I do not use (I think?) whenI connect to the internet. These are (in rc.0 order): httpd, mysql, samba, nfsd, rpc, sshd, saslauthd, openldap, messagebus, and as in rc.0 end with /bin/sync and /bin/sleep 3.
I am unsure of ssalauthd, openldap and messagebus in particular.
The objective is to have as few services available as possible to thwart any hackers.
The means for turning these off would be as in rc.0 and in that sequence. I will turn them back on in rc.M order.
Any notes or suggestions will be very helpful.
PS
When I run sh /etc/rc.d/rc.nfsd stop i get the default case returned i.e. "usage ......" Whi won't this behave?Last edited by clickit; 07-06-2008 at 12:57 AM. Reason: nfsd stop
- 07-16-2008 #2Just Joined!
- Join Date
- Sep 2007
- Location
- Lafayette, IN
- Posts
- 83
If your distro has /sbin/chkconfig (I know Red Hat and Fedora do, maybe others?) you can just use
/sbin/chkconfig service_name off
Or else, you could remove the links from /etc/rc.*, if your system uses symlinks in each runlevel
- 07-21-2008 #3
chkconfig have --level option too,
chkconfig --level 4 httpd off will turn off httpd in run level 4.


Reply With Quote
