I'd like to store the Tomcat v5.5 port in an environment variable and have Tomcat listen on that port. So far the only way I can see to change the port is by amending $CATALINA_HOME/conf/server.xml. Is there a way to set the port value by supplying an external value when starting Tomcat? I'm running Tomcat on Solaris.
|
|
|
|
|
|
|
This is a bit like using a sledgehammer to crack a nut, but you could use the Tomcat that's embedded in JBoss, which has a unified mechanism for substituting system properties in arbitrary config files, including the tomcat server.xml. Your environment variable can be passed through as a system property in the startup script (using -D). JBoss can be stripped down to not much more than its kernel and tomcat, so you wouldn't need to run the whole shooting match. But it would still be considerably heavier than standalone Tomcat. |
||||
|
|
|
Create a script to launch Tomcat. In the launch script, export JAVA_OPTS to specify a value for the Tomcat property
As you can see, I've set The script then launches Tomcat:
You now need to change the Tomcat
Now Tomcat will use the port defined in the ${CATALINA_BASE_PORT} environment variable whenever you start it via the new launch script. |
|||
|
