Applicable to:
- Plesk for Linux
Symptoms
- Unable to send mail messages on Plesk server;
- 25 port is listened by sendmail utility:
# netstat -tlpn | grep :25
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 27580/sendmail: MTA
Cause
Port 25 is used by another process.
Resolution
-
Connect to the server via SSH.
- Find out the process of sendmail:
# ps aux | grep -v grep | grep sendmail
root 27580 0.0 0.1 78084 3052 ? Ss Jan28 1:34 sendmail: MTA: accepting connections - Kill this process:
# kill -9 27580
- Restart Postfix:
# service postfix restart
Comments
0 comments
Please sign in to leave a comment.