tomcat的管理頁面配置
阿新 • • 發佈:2018-04-10
tomcat啟動tomcat,進入 http://localhost:8080/,會看到如下三個按鈕:
Server Status:查看服務器狀態 xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
version="1.0">
<!--
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
<user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
<user username="role1" password="<must-be-changed>" roles="role1"/>
-->
<role rolename="manager-gui"/>
<role rolename="admin-gui"/>
<user username="admin" password="admin" roles="manager-gui,admin-gui"/>
</tomcat-users>
備註:manager-gui角色對應Manager App權限,admin-gui角色對應Host Manager權限
Server Status:查看服務器狀態
Manager App:管理服務器上部署的應用,如將WARfile文件部署到tomcat中,還可以啟用或停止項目
Host Manager:查看主機信息
進入管理頁面可以看到tomcat的版本信息
在默認情況下,tomcat的配置文件裏沒有角色,因為在tomcat的conf文件夾下的tomcat-users.xml文件中,用戶是被註釋掉的。
<tomcat-users xmlns="http://tomcat.apache.org/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0">
<!--
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
<user username="role1" password="<must-be-changed>" roles="role1"/>
-->
<role rolename="manager-gui"/>
<role rolename="admin-gui"/>
</tomcat-users>
備註:manager-gui角色對應Manager App權限,admin-gui角色對應Host Manager權限
tomcat的管理頁面配置