Tag: tomcat

  • Monitor sites for exploits

    We dislike dealing with exploited websites. A common cause is “the long forgotten outdated install from a web developer who left years ago. hoping works forever”. Public facing services need to be kept updated in order to remain secure, so script-kiddies can’t use your server for abuse, like selling dodgy medicinal products. One would always…

  • Tomcat 7 released, installer updated

    Tomcat is one the most popular Java servlet/JSP containers. Tomcat 6 has been out since 2006 and the Tomcat team has just announced the first stable release of Tomcat 7. At the time of writing version 7.06 is the latest stable release. Tomcat 7 implements the Servlet 3.0, JSP 2.2 and EL 2.2 specifications. Along…

  • Setting up Monit + with tomcat

    We get asked a lot by customers to install and setup monit. Its not an overly hard task, in fact its pretty darned easy. Monit is brilliant for monitoring and restarting services when they are down, it can alert you or just restart after 5 failed connects/attempts. It handles everything from disk space, to memory,…

  • One Java init script to rule them all

    Need an init script for a Java service? Like tomcat, liferay, or jboss? Regular Linux init scripts often don’t work so well. e.g. Java apps typically want to be run by a particular user (e.g. tomcat or liferay). e.g. They may require a ‘special’ shutdown mechanism (e.g. with Tomcat sending a signal to a particular…