Unix/Linux

How to disable sendmail so that it won't get started up?

steloflute 2013. 11. 21. 23:30

http://www.linuxforums.org/forum/applications/3324-how-disable-sendmail-so-wont-get-started-up.html

 

  1. to stop sendmail from starting on Redhat, run:

  2. Code:
  3. chkconfig --del sendmail
  4. Jason
  5.  

  • #3
    Just Joined!
    Join Date
    Jun 2003
    Posts
    25
    jason how can i make it restart again.
    what is the command to make it normal?

    -nandu

  • #4
    Linux Guru
    Join Date
    Apr 2003
    Location
    London, UK
    Posts
    3,284
    to let it start up at boot time again:

    Code:
    chkconfig --add sendmail
    and to see if it is on or off for each run level:
    Code:
    chkconfig --list sendmail
  •