On Aug 19, 2007, at 21:39 , Winnie wrote:
hi..
when i run "nginx", i got the following error log as below:
2007/08/20 09:30:03 [emerg] 27521#0: bind() to 0.0.0.0:25 failed (98:
Address already in use)
2007/08/20 09:30:03 [notice] 27521#0: try again to bind() after 500ms
2007/08/20 09:30:03 [emerg] 27521#0: bind() to 0.0.0.0:25 failed (98:
Address already in use)
2007/08/20 09:30:03 [notice] 27521#0: try again to bind() after 500ms
2007/08/20 09:30:03 [emerg] 27521#0: bind() to 0.0.0.0:25 failed (98:
Address already in use)
2007/08/20 09:30:03 [notice] 27521#0: try again to bind() after 500ms
2007/08/20 09:30:03 [emerg] 27521#0: bind() to 0.0.0.0:25 failed (98:
Address already in use)
2007/08/20 09:30:03 [notice] 27521#0: try again to bind() after 500ms
2007/08/20 09:30:03 [emerg] 27521#0: bind() to 0.0.0.0:25 failed (98:
Address already in use)
2007/08/20 09:30:03 [notice] 27521#0: try again to bind() after 500ms
2007/08/20 09:30:03 [emerg] 27521#0: still could not bind()
<snip>
server {
listen 25;
protocol smtp;
timeout 300s;
}
server {
listen 110;
protocol pop3;
proxy on;
proxy_pass_error_message on;
}
}
It appears that you already have something running on port 25, most
likely another SMTP agent.
~Wayne