Click here to get started with launching EC2 AMIs click here
Installing JDK6, Apache And Tomcat
++++++++++++++++++++
- apt-get update && apt-get upgrade -y
Install APACHE: sudo apt-get install apache2
Install JDK6 : sudo apt-get install sun-java6-jdk
Install Tomcat :
Test if tomcat is running
/etc/init.d/tomcat6 status
Tomcat is installed in /var/lib/tomcat6 with main files linked in /etc/tomcat6
check more about tomcat6 configuration here
Configuring Apache2 with Tomcat6
Congiruation Setup for Apache2 Virtual Host Configuration setup,by SlicetHost clicking here
At this point, I am assuming Apache2 , Java6 and Tomcat6 are installed and running fine independantly.
1. In Order to, Apache and Tomcat to talk, Mod jk connector is needed
sudo apt-get install libapache2-mod-jk
sudo a2enmod jk
2. After that, check whether there is jk.load in the apache 2 modules
sudo ls /etc/apache2/mods-enabled/
5. Edit and save the two lines of workers.properties
sudo vi /etc/libapache2-mod-jk/workers.properties
workers.tomcat_home=/usr/share/tomcat6
workers.java_home=/usr/lib/sun-java6
6. Edit and save the two lines in tomcat-users.xml
sudo vi /etc/tomcat6/tomcat-users.xml
7.
- cd /etc/apache2
- cp /usr/share/doc/libapache2-mod-jk/httpd_example_apache2.conf mods-available/jk.conf
- vi jk.conf and add the following
- JkWorkersFile /etc/libapache2-mod-jk/workers.properties
JkShmFile /var/run/apache2/jk-runtime-status
JkLogFile /var/log/apache2/mod_jk.log
JkLogLevel debug
mkdir -p /var/www/public_html/domain1.com/{public,private,logs,cgi-bin,backup}
mkdir -p /var/www/public_html/domain2.com/{public,private,logs,cgi-bin,backup}
- add some index.html files in the public directory
- create a domain1.com file in /etc/apache2/sites-available
#domain : domain1.com
#public /var/www/public_html/domain1.com/
ServerAdmin webmaster@domain1.com
ServerName domain1.com
ServerAlias www.domain1.com
#index file sand doc root
DirectoryIndex index.html
DocumentRoot /var/www/public_html/domain1.com/public
AllowOverride All allow from all Options +Indexes
#custom log file
LogLevel info
ErrorLog /var/www/public_html/domain1.com/log/error.log
CustomLog /var/www/public_html/domain1.com/public/access.log combined
- a2ensite domain1.com
- /etc/init.d/apache2 reload
- Follow the same steps for domain2.com too..
- edit the /etc/hosts file and add entries for domain1.come and domain2.com
127.0.0.1 www.domain2.com
- Open the browser and type www.domain1.com , you should see the domain1.com/public/index.html page
+++++++++++++++++++++++
/usr/share/tomcat6/lib (CATALINA_HOME) (Classes are loaded from here)
Reference Links
UBuntu's apache2 file structure is different with the addition of apache2.con, mods-available, mods-enables, sites-available, sites-enabled convention. Here is a good blog which explains this direcotry structure in details, click here
Good Article on How to Configure Apache2 with Tomcat, click here
No comments:
Post a Comment