16
Nov/080
Nov/080
Linux: Apache Tomcat tips and tricks
JAVA_HOME or JRE_HOME variables are not defined:
Edit bash_profile for the user running Tomcat:
nano ~/.bash_profile
Add the following line and edit to point to correct directory:
export JRE_HOME=/usr/local/jre
Save and exit, then execute the following command:
source ~/.bash_profile
Running Apache Tomcat on privileged ports (lower then 1024) as non-root user:
The best way is to set an iptables rule to forwards incoming requests from port 80 to 8080:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080
or setup apache with mod_jk connector to pass http requests to tomcat
Related posts:
- Linux: Run tomcat with apache – mod_jk configuration
- Apache: NameVirtualHost *:80 has no VirtualHosts error message
- Linux: Reset iptables firewall rules
- Linux: Release port 8080 after stopping Tomcat – Port 8080 in use by Java
- Linux: tar tips and tricks
Enjoy this article?
Comments (0)
Trackbacks (0) ( subscribe to comments on this post )
No comments yet.
Leave a comment
No trackbacks yet.
