am running multiple tomcat instances on the same server
first two are fine,
third one has errors
here are the configs
server.xml
<?xml version='1.0' encoding='utf-8'?>
<Server port="8010" shutdown="SHUTDOWN">
Define a non-SSL HTTP/1.1 Connector on port 8083
<Connector port="8083" protocol="HTTP/1.1"
redirectPort="8446" URIEncoding="UTF-8" />
port="8083" protocol="HTTP/1.1"
redirectPort="8446" />
<!-- Define a SSL HTTP/1.1 Connector on port 8446
<Connector port="8446" protocol="HTTP/1.1" SSLEnabled="true"
<!-- Define an AJP 1.3 Connector on port 8012 -->
<Connector port="8012" protocol="AJP/1.3" redirectPort="8446"
URIEncoding="UTF-8" />
httpd.conf
<VirtualHost *>
ServerName nimble-artists.up-south.com
DocumentRoot "/usr/local/www/nimbleartists.com/server/webapps/ROOT"
ServerAdmin ste...@up-south.com
ServerAlias nimble-artist.up-south.com
ErrorLog logs/www.nimbleartist.com-error_log
CustomLog logs/www.nimbleartist.com-access_log common
CustomLog logs/www.nimbleartist.com-combined_log combined
CustomLog logs/combined.log combined
<Directory "/usr/local/www/nimbleartists.com/server/webapps/ROOT">
Options None
AllowOverride None
Order allow,deny
allow from all
</Directory>
JkLogFile /var/log/httpd/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
JkMount / nimble-artists.up-south.com
JkMount /* nimble-artists.up-south.com
ProxyPass / ajp://127.0.0.1:8012/
ProxyPassReverse / ajp://127.0.0.1:8012/
</VirtualHost>
workers.properties
worker.list=www2.up-south.com
worker.default.port=8009
worker.default.host=localhost
worker.default.type=ajp13
#worker.default.lbfactor=1
worker.list=www2.labiker.net
worker.default.port=8011
worker.default.host=localhost
worker.default.type=ajp13
#worker.default.lbfactor=2
worker.list=nimble-artists.up-south.com
worker.default.port=8012
worker.default.host=localhost
worker.default.type=ajp13
#worker.default.lbfactor=3
according to all this
tomcat for nimbleartists is running on port 8083 with the connector on 8012
and apache should connect on port 8012 to tomcat
however thats not happening.
sorry if its a bit of a dumb question.
--
eats the blues for breakfast,
does unix for rent,
plays harp for food,
will play the flute for kicks
rides for the freedom
scrapes for the challenge
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org