Tomcat 用戶配置

1. 下載 Tomcat ,免安裝包


2. 在環境變量中加入JAVA_HOME

例如:C:\Program Files\Java\jdk1.7.0_40


3. 瀏覽器中輸入localhost:8080,測試服務


4. 修改Tomcat配置文件

conf\tomcat-users.xml

<user username="..." password="..." roles="..."/>

修改後,重新啓動Tomcat,才能進入管理頁面。


注意:

Note that for Tomcat 7 onwards, the roles required to use the host manager application were changed from the single admin role to the following two roles. You will need to assign the role(s) required for the functionality you wish to access. 

admin-gui - allows access to the HTML GUI 
admin-script - allows access to the text interface 

-----------------------------------------------------------------------

Note that for Tomcat 7 onwards, the roles required to use the manager application were changed from the single manager role to the following four roles. You will need to assign the role(s) required for the functionality you wish to access. 

manager-gui - allows access to the HTML GUI and the status pages 
manager-script - allows access to the text interface and the status pages 
manager-jmx - allows access to the JMX proxy and the status pages 
manager-status - allows access to the status pages only 

-----------------------------------------------------------------------


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章