On Thu, Jun 17, 2004 at 08:26:34PM -0600, Casas, Claudia wrote:
: lsof -i :8080
: COMMAND  PID USER   FD   TYPE DEVICE SIZE NODE NAME
: java    2801 root    3u  IPv4   7503       TCP *:webcache (LISTEN)

This is good.
(Well, technically, it's not a good idea to run Tomcat as root -- but
we'll get to that later ;)


The iptables output confirms: your firewall is configured to explicitly
allow only certain traffic.  Tomcat (port 8080) isn't in that list.

Adding it is simple:

        iptables -t filter -A RH-Firewall-1-INPUT \
                -p tcp --dport 8080     \
                -m state --state NEW -j ACCEPT

Be sure to test that out and, if it doesn't break anything else, save
your changes:

        service iptables save

-QM

-- 

software  -- http://www.brandxdev.net
tech news -- http://www.RoarNetworX.com


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to