临时解决方案:
#service postfix status
#service sendmail status
#service postfix stop
[root@wign ~]# ps -ef|grep sendmail|wc -l
3038
[root@wign ~]# ps -ef|grep postdrop|wc -l
3162
停止postdrop服务,杀掉postdrop的进程
#ps aux|grep postdrop |grep -v grep|cut -c 9-15|xargs kill -15
最终解决方案:
根据报错:确认该服务未指定日志路径
mkdir /var/spool/postfix/maildrop
标签:ps,grep,登录,service,postfix,ef,Linux,postdrop From: https://www.cnblogs.com/libin-linux/p/18210075