- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail error
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
Forums
Discussions
Discussions
Discussions
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
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
10-12-2004 07:51 AM
10-12-2004 07:51 AM
sendmail error
I having this error in the /var/adm/syslog.log
The problem is about the sendmail service
Oct 12 11:10:59 crrssv02 sendmail[342]: starting daemon (8.9.3 (PHNE_29773)): qu
eueing@00:30:00
Oct 12 11:10:59 crrssv02 sendmail[345]: starting daemon (8.9.3 (PHNE_29773)): SM
TP+queueing@01:00:00
Oct 12 11:11:00 crrssv02 sendmail[348]: starting daemon (8.9.3 (PHNE_29773)): SM
TP+queueing@01:00:00
Oct 12 11:11:00 crrssv02 sendmail[348]: NOQUEUE: SYSERR(root): opendaemonsocket:
cannot bind: Address already in use
Oct 12 11:11:00 crrssv02 sendmail[348]: problem creating SMTP socket
Pls Help me !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 08:05 AM
10-12-2004 08:05 AM
Re: sendmail error
On your system something is using port 25.
Check which process is using it.
netstat -an|grep 25
If you have lsof tool(list open files) on your machine, you can do
lsof -p tcp:25
lsof -p udp:25
Unless you change the port or stop the process using port 25, you will not be able to start sendmail.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 08:09 AM
10-12-2004 08:09 AM
Re: sendmail error
ps -ef |grep sendmail
Use lsof to see what is using port 25.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 08:47 AM
10-12-2004 08:47 AM
Re: sendmail error
# netstat -an | grep 25
tcp 0 0 *.49259 *.* LISTEN
tcp 0 0 *.49258 *.* LISTEN
# ps -ef | grep sendmail
root 854 795 4 14:33:58 pts/ta 0:00 grep sendmail
root 840 1 0 14:33:37 ? 0:00 /usr/sbin/sendmail -q30m
root 849 827 2 14:33:42 ? 0:04 /etc/iscan/sendmail
root 827 1 0 14:33:35 ? 0:04 /etc/iscan/sendmail
root 850 827 4 14:33:43 ? 0:04 /etc/iscan/sendmail
root 843 1 0 14:33:38 ? 0:00 sendmail: accepting connections
on port 19000
root 846 1 0 14:33:38 ? 0:00 /usr/sbin/sendmail -bd -q1h -C/e
tc/mail/sendmail.cf.delivery
who can test if the port 25 is open a listen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 08:52 AM
10-12-2004 08:52 AM
Re: sendmail error
telnet localhost 25
Will tell if sendmail is running on that host or not.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 09:01 AM
10-12-2004 09:01 AM
Re: sendmail error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2004 09:11 AM
10-12-2004 09:11 AM
Re: sendmail error
/sbin/init.d/sendmail stop
Try that a couple of times...
ps -ef|grep sendmail
If still there - kill it manually by it's pid
Rgds...Geoff