As far as i know you should use a connector for apache, so it receives the connections and passes it to tomcat. I had to setup tomcat once and to be honest, didn't bothered with that stuff, just disabled apache and had this rules loaded at startup iptables -t nat -A OUTPUT -d localhost -p tcp --dport 80 -j REDIRECT --to-ports 8080 iptables -t nat -A OUTPUT -d your hostname -p tcp --dport 80 -j REDIRECT --to-ports 8080 iptables -t nat -A PREROUTING -d your hostname -p tcp --dport 80 -j REDIRECT --to-ports 8080 Ciro On Wed, 23 Feb 2005 11:56:42 +0100, Zoltan Levardy <zoltan@levardy.org> wrote:
hi,
does anyone have any idea how can i configure my suse 9.1 system to "support" tomcat running on port 80? it can run only if i am starting directly from /usr/share/tomcat/bin/startup.sh but if i am running thru the /etc/init.d/tomcat it is complaining about permissions.
is this file permission problems?
or missing permission to run 80 with "tomcat" user?
thank you guys, z