Last active
December 16, 2015 18:48
-
-
Save prule/5480031 to your computer and use it in GitHub Desktop.
Content for TOMCAT_HOME/conf/tomcat-users.xml to set up and admin user so we can use Maven to deploy an application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='cp1252'?> | |
<tomcat-users> | |
<role rolename="manager-gui"/> | |
<role rolename="manager-script"/> | |
<role rolename="manager-jmx"/> | |
<role rolename="manager-status"/> | |
<role rolename="admin-gui"/> | |
<role rolename="admin-script"/> | |
<user username="tomcat" password="password" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui,admin-script"/> | |
</tomcat-users> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment