Linux啟動時在sendmail出現make: warning: Clock skew detected.的解決辦法

snowdba發表於2014-09-11


啟動Linux作業系統的時候出現:

這表示您在安裝 Linux 的時候,系統時間上出現不準確了!導致於你的 sendmail 相關的設定檔竟然比目前的時間還要新,它變成了魔鬼終結者,來自未來給你搗亂的。
可以使用touch /etc/mail/*  來解決問題

看,時間超前了!
[root@rac1 ~]# ls -l /etc/mail/*
-rw-r--r-- 1 root root   355 Feb 12  2010 /etc/mail/access
-rw-r----- 1 root root 12288 Sep 12  2014 /etc/mail/access.db
-rw-r--r-- 1 root root     0 Feb 12  2010 /etc/mail/domaintable
-rw-r----- 1 root root 12288 Sep 12  2014 /etc/mail/domaintable.db
-rw-r--r-- 1 root root  5521 Feb 12  2010 /etc/mail/helpfile
-rw-r--r-- 1 root root    64 Feb 12  2010 /etc/mail/local-host-names
-rw-r--r-- 1 root root     0 Feb 12  2010 /etc/mail/mailertable
-rw-r----- 1 root root 12288 Sep 12  2014 /etc/mail/mailertable.db
-rw-r--r-- 1 root root  1048 Feb 12  2010 /etc/mail/Makefile
-rw-r--r-- 1 root root 58294 Feb 12  2010 /etc/mail/sendmail.cf
-rw-r--r-- 1 root root  7205 Feb 12  2010 /etc/mail/sendmail.mc
-r--r--r-- 1 root root 41375 Feb 12  2010 /etc/mail/submit.cf
-rw-r--r-- 1 root root   940 Feb 12  2010 /etc/mail/submit.mc
-rw-r--r-- 1 root root   127 Feb 12  2010 /etc/mail/trusted-users
-rw-r--r-- 1 root root     0 Feb 12  2010 /etc/mail/virtusertable
-rw-r----- 1 root root 12288 Sep 12  2014 /etc/mail/virtusertable.db

[root@rac1 ~]# date
Thu Sep 11 22:48:00 CST 2014

[root@rac1 ~]# touch /etc/mail/*
[root@rac1 ~]# ls -l /etc/mail/*
-rw-r--r-- 1 root root   355 Sep 11 22:50 /etc/mail/access
-rw-r----- 1 root root 12288 Sep 11 22:50 /etc/mail/access.db
-rw-r--r-- 1 root root     0 Sep 11 22:50 /etc/mail/domaintable
-rw-r----- 1 root root 12288 Sep 11 22:50 /etc/mail/domaintable.db
-rw-r--r-- 1 root root  5521 Sep 11 22:50 /etc/mail/helpfile
-rw-r--r-- 1 root root    64 Sep 11 22:50 /etc/mail/local-host-names
-rw-r--r-- 1 root root     0 Sep 11 22:50 /etc/mail/mailertable
-rw-r----- 1 root root 12288 Sep 11 22:50 /etc/mail/mailertable.db
-rw-r--r-- 1 root root  1048 Sep 11 22:50 /etc/mail/Makefile
-rw-r--r-- 1 root root 58294 Sep 11 22:50 /etc/mail/sendmail.cf
-rw-r--r-- 1 root root  7205 Sep 11 22:50 /etc/mail/sendmail.mc
-r--r--r-- 1 root root 41375 Sep 11 22:50 /etc/mail/submit.cf
-rw-r--r-- 1 root root   940 Sep 11 22:50 /etc/mail/submit.mc
-rw-r--r-- 1 root root   127 Sep 11 22:50 /etc/mail/trusted-users
-rw-r--r-- 1 root root     0 Sep 11 22:50 /etc/mail/virtusertable
-rw-r----- 1 root root 12288 Sep 11 22:50 /etc/mail/virtusertable.db

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29047826/viewspace-1268067/,如需轉載,請註明出處,否則將追究法律責任。

相關文章