wordpress评论回复慢-sendmail
最近发现wordpress评论回复非常慢,点了发表评论后得过十几秒才有显示。
但是把程序拿到本地,速度非常快。
所以怀疑是服务器上面的sendmail的原因。
命令 vi mail.err
查找到 My unqualified host name (conputeranme) unknown; sleeping for retry
conputeranme是机器的名字,每个人都不一样的。
再查发现是host有问题。
在host最后面添加上 解析地址
vi /etc/hosts
127.0.0.1 conputeranme conputeranme.
注意conputeranme是你自己的服务器的名字,
还有就是conputeranme后面有个.
然后重启sendmail.速度马上上来了。
停止 /etc/init.d/sendmail stop
启动 /et/init.d/sendmail start