1. 程式人生 > >mycat啟動報錯UnknownHostException(Temporary failure in name resolution)解決方法

mycat啟動報錯UnknownHostException(Temporary failure in name resolution)解決方法

temporary exc ava ora wrap 命令 temp lex PE

重啟命令

./mycat restart

查看日誌

cd logs
tail -f wrapper.log

報錯信息

INFO   | jvm 2    | 2018/05/09 11:28:28 | Error: Exception thrown by the agent : java.net.MalformedURLException: 
Local host name unknown: java.net.UnknownHostException: hifu-test1: hifu-test1: Temporary failure in name resolution

解決方法

su - root

用root用戶或有權限的用戶

cd /etc
vi hosts

增加:

23.23.22.18     hifu-test1
23.23.22.19     hifu-test2

原因

  • 主機名原來叫aaa,前幾天改為hifu-test1,但hosts沒修改。
  • 由於mycat已經啟動,只要不重新加載,一直運行良好,但一旦重啟,則失敗。

mycat啟動報錯UnknownHostException(Temporary failure in name resolution)解決方法