Installing Tomcat 7 and Apache2 with mod_jk on Ubuntu 14.04 and connect our tomcat with apache....... ------------------------------------------------------------------------- Step1 ------------------------------------------------------------------------- Installing Apache #sudo apt-get install apache2 Test the installation from the browser using http://localhost/ ------------------------------------------------------------------------- Step2 ------------------------------------------------------------------------- Put your tomcat setup in /opt/ Create a test application for tomcat. #cd /opt/tomcat/tomcat1/webapps #sudo mkdir tomcat now past here all your ROOT files. ----------------------------------------------------------------------- Step3 ------------------------------------------------------------------------- Test the installation from the browser using http://localhost:8080/tomcat ----------------------------------------------------------...
Apache Server SSL Certificate Installation Note this is Temporary base that certificat take from https://www.sslforfree.com/ for 90 Days go below links and follow step For help...https://www.sslforfree.com/ Requirments;;;;;;;;; 1-Your Domain should be connected with your HostServer 2-You shoud have .CSR and .KEY and .SRT files with location of /root/your_crs.csr /root/your_crt.crt /root/your_key.key First Need to enable your ssl with below command from /etc/apache2/mods-available #a2enmod ssl.load Second Need to some changes in our .conf file from /etc/apache2/sites-available #nano yoursitename.conf (add below line between your <VirtualHost> </VirtualHost> and edit 80 to 443 also) <VirtualHost *:443> ServerAdmin webmaster@localhost ServerName yourdomainname DocumentRoot /yourdirectorypath <Directory /yourdirectorypath/> Options Indexes FollowSymLinks ExecCGI Includes AllowOverride All Require all granted Direc...