Adding users to access Applications.
Step 1: Go to Conf Folder
/opt/apache-tomcat-8.5.23/conf
Step 2: Open tomcat-users.xml file
and add below lines to add user "admin" with password
"admin"
Step 3: vi tomcat-users.xml file
<role
rolename="manager-gui"/>
<user
username="admin" password="admin"
roles="manager-gui"/>
Comments
Post a Comment