JAVA_HOME must point to the JRE/JDK. You can run ‘echo $JAVA_HOME’ (Linux) or 'echo %JAVA_HOME%' (Windows) to verify this.
PATH must include the path to java executable. You can run ‘java’ to verify that the executable is found.
CTP downloaded (via download link). You can request a download link by sending an email to your Parasoft representative.
tar –zxvf apache-tomcat-<version>
/opt/tomcat
.You may also want to configure Tomcat to start automatically when the server starts. There are two ways to do this:
<apache-tomcat-home>/bin/startup.sh
cd /etc/init.d/
vi tomcat
Edit the file to look like this:
#!/bin/bash # description: Tomcat Start Stop Restart # processname: tomcat # chkconfig: 234 20 80 JAVA_HOME=/usr/java/jdk1.7.0_21 export JAVA_HOME PATH=$JAVA_HOME/bin:$PATH export PATH CATALINA_OPTS="-Xmx768m -XX:MaxPermSize=256m" export CATALINA_OPTS CATALINA_HOME=/usr/share/apache-tomcat-7.0.47 TOMCAT_OWNER=parasoft case $1 in start) su - $TOMCAT_OWNER -c $CATALINA_HOME/bin/startup.sh ;; stop) su - $TOMCAT_OWNER -c $CATALINA_HOME/bin/shutdown.sh ;; restart) su - $TOMCAT_OWNER -c $CATALINA_HOME/bin/shutdown.sh su - $TOMCAT_OWNER -c $CATALINA_HOME/bin/startup.sh ;; esac exit 0 |
where TOMCAT_OWNER=parasoft
references a user named ‘parasoft
’ to run the Tomcat service.
To start the Tomcat service:
/etc/init.d/tomcat start
To stop the Tomcat service:
/etc/init.d/tomcat stop
To restart the Tomcat service:
/etc/init.d/tomcat restart
To ensure that Tomcat gets started automatically at boot:
chkconfig tomcat on
Alternatively, you can start Tomcat by directly calling the <apache-tomcat-home>/bin/startup.sh
script on Linux. If starting Tomcat this way, you will need to create a <apache-tomcat-home>/bin/setenv.sh
file with the following contents:
CATALINA_OPTS="-Xmx768m -XX:MaxMetaspaceSize=256m"
-XX:MaxMetaspaceSize=256m
CTP receives user passwords over a web interface. To ensure that passwords are encrypted when they are sent over the network, Tomcat should be configured to use only the HTTPS connector. For instructions on how to configure HTTPS in Tomcat, see the Apache Tomcat SSL/TLS Configuration HOW-TO topic.
To ensure proper parsing of Japanese characters and other non-ASCII characters, add URIEncoding="UTF-8"
to the <Connector>
in Tomcat's server.xml. For example:
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" /> |