I'm trying to run multiple tomcat
instances in parallel in the same machine.
Therefore trying to change the default port, but it does not work.
server.xml:
<Connector port="8090" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
compression="on"
/>
<Connector port="8019" protocol="AJP/1.3" redirectPort="8443" />
On startup, I get the error: JAVA_BIND<null>:8080 already in use
What might be missing? Which steps have to be taken to run in parallel?
UPDATE: The problem is that the machine defines the environment variable as follows:
CATALINA_HOME = d:\apache\
Thus any tomcat installation points to the same directory on launch.
How could I change this?