Operating System - Linux
1752808 Members
5816 Online
108789 Solutions
New Discussion юеВ

how to disable sendamail in RHEL

 
SOLVED
Go to solution
rajesh73
Super Advisor

how to disable sendamail in RHEL

how to disable sendmail in RHEL
6 REPLIES 6
avizen9
Esteemed Contributor
Solution

Re: how to disable sendamail in RHEL

you can disable it with below command

chkconfig --del sendmail

if you wish to start again in next boot can apply below command

chkconfig --add sendmail

can check status with below command.
chkconfig --list sendmail

if you hate to work with command problem can open service by system-config-services
look for sendmail service
and uncheck it.

let me know how it goes,
rajesh73
Super Advisor

Re: how to disable sendamail in RHEL

i thank u it is working

but if i am went single mode it is booting, suppose i went to try to go level 2-5 once level it is hanging
rajesh73
Super Advisor

Re: how to disable sendamail in RHEL

hi it is ibm 520 box i newly added one vg card after that it is hanging
rajesh73
Super Advisor

Re: how to disable sendamail in RHEL

hi any one help this one
Steven E. Protter
Exalted Contributor

Re: how to disable sendamail in RHEL

Shalom,

Is the vg card supported by the OS? If not you will need to get a driver from the maker of the card or another card.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
dirk dierickx
Honored Contributor

Re: how to disable sendamail in RHEL

instead of using 'del' i ratehr use the on/off commands.

chkconfig sendmail off

turns it off for all runlevels, which is what you want.