我按照这里的教程进行操作:https : //help.ubuntu.com/community/PostfixCompleteVirtualMailSystemHowto#Create_a_vmail_user 在新的 ubuntu 安装上设置 Postfix 但它不会启动,每当我尝试使用 postfix start 启动它时说:致命:邮件系统启动失败
这是我的错误日志:SYSERR(root): collect: Cannot write ./dfr2IIHHJB029721 (bfcommit, uid=0, gid=125): No such file or directory
和致命的:绑定 0.0.0.0 端口 25:地址已经在使用 并且 smtp 正在端口 25 上运行,我检查过。请问我该怎么办?我需要启动并运行这个邮件服务器
xof*_*fer 11
看看是什么让那个端口打开了。在 Linux 中:
$ sudo netstat -lnp |grep :25
Run Code Online (Sandbox Code Playgroud)
你会看到类似的东西:
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 1624/master
tcp6 0 0 :::25 :::* LISTEN 1624/master
Run Code Online (Sandbox Code Playgroud)
在这种情况下,1624 是进程 ID (pid)。所以:
$ ps aux |grep 1624
Run Code Online (Sandbox Code Playgroud)
根 1624 0.0 0.0 25160 1636 ? Ss Jul17 0:00 /usr/lib/postfix/master
您可以终止或重新启动该进程(或决定,嘿,它已经在运行......)。
| 归档时间: |
|
| 查看次数: |
32450 次 |
| 最近记录: |