1. 程式人生 > >linux下啟動tomcat時卡在Deploying web application directory /..../webapps/doc不動

linux下啟動tomcat時卡在Deploying web application directory /..../webapps/doc不動

在網上查了一下 

找到jdk1.x.x_xx/jre/lib/security/Java.security檔案,在檔案中找到securerandom.source這個設定項,將其改為:

securerandom.source=file:/dev/./urandom

於是先find / -name jre ----------找到檔案位置

然後找到Java.security檔案 對其進行編輯 由於檔案中內容較多所以使用搜索:/securerandom.source  

找到該設定項之後發現securerandom.source=file:/dev/urandom  中間少了/./  改為securerandom.source=file:/dev/./urandom

再重新啟動tomcat  正常!