- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: How to restart the smtp service in Red Hat Ent...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО01-22-2009 04:09 PM
тАО01-22-2009 04:09 PM
Does any one knows how to restart smtp after a change has been made the /etc/syslog.conf to take effect? I would really appreciated your respond as soon as possible. I will give points.
Thank you so much!
RT
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-22-2009 05:28 PM
тАО01-22-2009 05:28 PM
SolutionWhy do u want to restart SMTP?
you should see some thing like SMTP to work
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 17396/sendmail: acc
NOT "127.0.0.1:25"
See if the below is applicable to you.
sendmail.cf file coming with RH7.2 only listens on loopback interface. u can see that in netstat -an
it looks like this
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN
I Commented following option and restarted the sendmail daemon.
O DaemonPortOptions=Port=smtp,Addr=127.0.0.1, Name=MTA
Then after restarting the daemon using netstat -an.
the output changed to
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
My mail now works
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2009 01:13 AM
тАО01-23-2009 01:13 AM
Re: How to restart the smtp service in Red Hat Enterprise
if you changed syslogd's config, to me it would make more sense to send its rather than sendmail's (or whatever MTA you use) PID a SIGHUP.
I assume the following should suffice:
# pkill -1 -P1 syslogd
on RHEL alternatively this should also work:
# service syslog restart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-25-2009 05:01 AM
тАО01-25-2009 05:01 AM
Re: How to restart the smtp service in Red Hat Enterprise
#/sbin/init.d/smtpd start
or
#/sbin/init.d/sendmail start
Rgds
Taifur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2009 08:39 AM
тАО02-08-2009 08:39 AM
Re: How to restart the smtp service in Red Hat Enterprise
# alternatives --config mta
If it is sendmail, then
/etc/init.d/sendmail restart
if it is postfix, then
/etc/init.d/postfix restart
Cheers