Powered by Blogger.

Deploy PSI Probe to Apache Tomcat

Configuration

Before you deploy PSI Probe to Apache Tomcat, you must configure the server. This may require you to restart the Tomcat service.

Security

PSI Probe requires four security roles (in order of increasing privileges):
  • probeuser
  • poweruser
  • poweruserplus
  • manager-gui - This is the same role required by Tomcat Manager and has the highest level of privileges.
    • Note: On Tomcat 5.x and 6.0.29 and below, you should use manager instead of manager-gui.
These must be added to your Realm. By default, roles are configured by editing $CATALINA_HOME/conf/tomcat-users.xml:
<tomcat-users>

  <role rolename="probeuser" />
  <role rolename="poweruser" />
  <role rolename="poweruserplus" />
  <role rolename="manager-gui" />

  <user username="admin" password="t0psecret" roles="manager-gui" />

</tomcat-users>
This will create a user called admin with the role of manager-gui.
If you are not using the default configuration, add these roles as appropriate for your Realm. Some Realm configurations, such as a JNDIRealm connecting to LDAP, will not require a server restart.

Enable Remote JMX

PSI Probe requires remote JMX to collect and display certain pieces of information (memory usage, cluster traffic, connection pools, and active threads). This is optional, but without it these features will not work. You can enable remote JMX with the following JVM command line option:
-Dcom.sun.management.jmxremote=true
If you need the JMX connection to be secured, refer to the Tomcat documentation on this topic.

Deployment

Once you have completed the configuration steps, it's time to deploy PSI Probe.

Option 1: Deploy with Tomcat Manager

  1. Start Tomcat if it is not running.
  2. Open the manager URL (e.g. http://localhost:8080/manager/html) in your web browser.
  3. Upload probe.war using the "War file to deploy" option.

Option 2: Manually Copy to Server

  1. Shut down Tomcat if it is running.
  2. Copy probe.war into $CATALINA_HOME/webapps/
  3. Start Tomcat.

Option 3: Fully Manual Deployment

You can, of course, unpackage the probe.war file and create the probe.xml context descriptor yourself.
If you do this, understand that PSI Probe requires a privileged context. META-INF/context.xml in probe.war contains an example:
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/probe" privileged="true" />

Testing

Once you have deployed PSI Probe to Tomcat, verify that you can access it in your web browser by entering PSI Probe's URL (e.g. http://localhost:8080/probe).
When you are prompted for a username and password, enter the credentials for the manager account you created earlier.
    Blogger Comment
    Facebook Comment