Dimitar Panayotov shares experience

Everything which eases programmer’s life and satisfies the clients

Archive for the 'apache' Category


Apache Tomcat 6: Web status management

Posted by Dimitar Panayotov on 20 November 2006, 2:20

Tomcat 6 does not come with ready-made security configuration (as Oracle AS and others do). In order you to be able to view online status of the server, you should go to this file:

${CATALINA_HOME}/conf/tomcat-users.xml

And put this XML snippet in its root context:

<role rolename=”manager”/>
<user username=”USER” password=”PASSWORD” roles=”manager”/>

Of course, you should replace USER / PASSWORD with your desired login details.

Posted in apache, tomcat | No Comments »