FreeBSD Disable /etc/rc.d Services Which Started Up At Initial Boot Time

by Vivek Gite on March 12, 2008 · 7 comments

Q. How do I disable services located at /etc/rc.d or /usr/local/etc/rc.d directory? For example I'd like to disable a service called /etc/rc.d/foo

A. FreeBSD services can be controlled by updating /etc/rc.conf file. The file rc.conf contains descriptive information about the local host name, configuration details for any potential network interfaces and which services should be started up at system initial boot time. You can edit file manually to remove entries. It is recommended that you use sysinstall utility to modify the /etc/rc.con file.

sysinstall utility

From the man page - The sysinstall utility is used for installing and configuring FreeBSD systems. It is the first utility invoked by the FreeBSD installation boot floppy and is also available as /usr/sbin/sysinstall on newly installed FreeBSD systems for use in later configuring the system. To start sysinstall login as root and enter:
# sysinstall
Select Configure (Do post installation menu) > Startup (configure system startup options) > Use [Space] or [Enter] key to select / deselect services / items from a menu > Ok to save the changes.

FreeBSD sysinstall to disable services
(Fig. 01: FreeBSD sysinstall utility in action)

Manually edit /etc/rc.conf

You can manually edit / update /etc/rc.conf file to enable or disable services:
# vi /etc/rc.conf
To disable sendmail at boot time, find line that read as follows:
sendmail_enable="YES"
With:
sendmail_enable="NONE"
Close and save the file.

Usually all services accepts - YES and NO parameters to enable or disable services. The correct way to figure out service parameter is by reading rc.conf man page. See rc.conf man page for more information:
man rc.conf
man rc

Updated for accuracy.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 7 comments… read them below or add one }

1 Sam Gaw April 8, 2008

To disable Sendmail on FreeBSD you need to use the following in rc.conf:


sendmail_enable="NONE"

not


sendmail_enable="NO"

Reply

2 ddb May 16, 2008

Hello,


sendmail_enable="NONE"

is to completely disable the sendmail service. Use

sendmail_enable="NO"

to bind it to the localhost only. I prefer it that way.

Reply

3 vivek May 16, 2008

ddb and sam,

Thanks for pointing out information. The faq has been updated.

Reply

4 Asnawi May 16, 2008

when I edit rc.conf, there was mistake I’v made.

ifconfig_xl0=”inet 10.2.1.147 netmask 255.255.255.248

As you can see above. I forgot to write ‘”‘.

then when I reboot my computer, this message appear:

etc/rc.conf: 10 : syntax error : Unterminated quoted string
Enter full pathname of shell or RETURN for /bin/sh :

what shoul I do?
It have not been resolved yet.
That make me mad…

Reply

5 vivek May 17, 2008

Asnawi,

Just type /bin/sh and enter it will boot the system. Mount the partition if not mounted and edit /etc/rc.conf file. Reboot again.

Reply

6 eko October 20, 2008

# Asnawi Says:
May 16th, 2008 at 11:41 pm

when I edit rc.conf, there was mistake I’v made.

ifconfig_xl0=”inet 10.2.1.147 netmask 255.255.255.248

As you can see above. I forgot to write ‘”‘.

then when I reboot my computer, this message appear:

etc/rc.conf: 10 : syntax error : Unterminated quoted string
Enter full pathname of shell or RETURN for /bin/sh :

what shoul I do?
It have not been resolved yet.
That make me mad…

u must enter one more time untul show # symbol

then type mount -t ufs -a enter

so edit rc,conf with editor default on your freebsd machine ee or vi

Reply

7 SIFE December 5, 2009

salamo alikom
@Asnawi
boot in single user(type 4 at menu boot) then mount your ufs partitions :
mount -a -t ufs
now edit your rc.conf :
ee /etc/rc.conf
then fix system errors if exist
fsck -y
finally reboot your system and you will get is :
reboot

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 5 + 13 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: