Products | Versions |
---|---|
TIBCO DataSynapse GridServer | - |
Not Applicable | - |
Resolution:
Resin includes a status servlet that is useful for troubleshooting. You can enable it in resin.conf by adding it to the web-app-default element:
<web-app-default>
<servlet-mapping servlet-class='com.caucho.servlets.ResinStatusServlet'>
<url-pattern>/resin-status</url-pattern>
<init enable="read"/>
</servlet-mapping>
<security-constraint>
<web-resource-collection url-pattern="/resin-status/*"/>
<ip-constraint>
<allow>127.0.0.1/32</allow>
</ip-constraint>
</security-constraint>
The security-constraint is there so that you can only access it from that machine, as it is not a protected servlet.
You can adjust the ip-constraint appropriately, if you do not have a browser on the same machine as the Manager.
Note that this will affect performance, and should not be done in a production environment.