|
tomcat-users.xml; what a difference a space made
Product: Apache Tomcat release 6.0.something
Symptom: After some fine tuning of the configuration files, a working installation was no longer working ... requests for web pages resulted in the browser hanging and waiting, in perpituity it seemed, for a response. In other words, the connection was being made to the port but no response returned.
Analysis / solution: It turns out that extra (spurious) spaces between the "<" and the tag name in the tomcat-user.xml file were causing the problem.
Wrong (failed as described):
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
< role rolename="manager"/>
< user username="trainee" password="abc123" roles="manager"/>
</tomcat-users>
Right (working):
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager"/>
<user username="trainee" password="abc123" roles="manager"/>
</tomcat-users>
Background: The tomcat-users.xml file provides one quick and easy way of providing a login capability to the Tomcat Manager application which allows you to see how your server is running 'on the fly', and to stop and start and deploy web applications individually rather than controlling them simply by stopping and starting the whole server!
Learn More: On our Deploying Apache Httpd and Tomcat course. (written 2009-01-16)
Associated topics are indexed under A654 - Web Application Deployment - Configuring and Controlling Tomcat [3043] Gathering information - logging - with log4j. First steps. - (2010-11-12) [2652] Reading and writing cookies in Java Servlets and JSPs - (2010-02-26) [2163] CATALINA_OPTS v JAVA_OPTS - What is the difference? - (2009-05-09) [2061] Tomcat 6 - Annotated Sample Configuration Files - (2009-03-01) [2039] The Invoker - (2009-02-13) [1943] Port and Glasses - (2008-12-14) [1762] WEB-INF (Tomcat) and .htaccess (httpd) - (2008-08-20) [1553] Automatic startup and shutdown of Tomcat - (2008-02-24) [1503] Web page (http) error status 405 - (2008-01-12) [1370] Apache Tomcat Performance Tuning - (2007-09-29) [1351] Compressing web pages sent out from server. Is it worth it? - (2007-09-14) [914] A practical example of roles - (2006-11-04) [907] Browser -> httpd -> Tomcat -> MySQL. Restarting. - (2006-10-28) [837] Tomcat - Shutdown port - (2006-08-18)
5575
Some other Articles
Text on a background imageTravelling to a course - station pickupsAdvise before my Apache / Tomcat courseAutomated server heartbeat and health checktomcat-users.xml; what a difference a space madeLoad Balancing - Hardware or Software?A good time to travelRules for a KingSpeaking all the languagesSo sad to see you go
|
4088 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|