WEB GUI 使用者無法登入問題(SSH 正常狀態下)

在 SSH 可以允許登入情況下,使用以下指令進行log查詢:

#List ALL
journalctl

#Filter

journalctl |grep <月份縮寫> / <指定字詞>

查詢之後發現有以下問題:

Aug 04 16:39:29 kernel: neighbour: arp_cache: neighbor table overflow!
Aug 04 16:38:09 postfix/local[55449]: error: open database /etc/aliases.db: No such file or directory
Aug 04 16:38:09  postfix/local[74903]: warning: hash:/etc/aliases: lookup of 'root' failed
Aug 04 16:38:09  postfix/local[74902]: 4DDDC5A5C1: to=<root@localhost>, orig_to=<root>, relay=local, delay=344, delays=344/0.05/0/0, dsn=4.3.0, status=deferred (alias database unavailable)

kernel: neighbour: arp_cache: neighbor table overflow! 參考此篇 >> Neighbour table overflow 解決方法

另外兩個可以發現 postfix 有錯誤產生,因此先行執行。

service postfix restart
service pveproxy restart

即可初步排除障礙,另外 db 遺失問題使用以下指令重新建立。

newaliases

接下來就會在 /etc/aliases.db 看到類似內容檔案。

cat /etc/aliases.db
a	?�b����эh^
�?�?�?�?�?�?�?�?�?�?�?�?rootwebmasterrootpostmast__________HOSTYP_MASTER_NAME156__________9YP_LAST_MOD�?�?�?�??�b����aэh

 

阅读剩余
THE END