September 2008
Monthly Archive
Sep 29, 2008
- Run Ubuntu Live CD
- Enter a terminal
- Locate the linux boot partition lives
[user@net ~]$sudo fdisk -l
- Assume the boot partition lives in /dev/sda6 then do mount into a directory, example /mnt/root
- [user@net ~]$sudo mkdir /mnt/root
- [user@net ~]$sudo mount -t ext3 /dev/sda6 /mnt/root
- [user@net ~]$sudo grub-install –root-directory=/mnt/root /dev/sda –recheck
- reboot
[Source]
Sep 3, 2008
- The system used in this tutorial has the following installed : Tomcat 6.0.14, Apache 2.2.8
- See on <tomcat_home>/conf/server.xml
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
- Download mod_jk from here
- Install mod_jk in Apache module directory
- On Linux, usual location :
- /usr/lib/apache/
- /usr/lib/apache2/
- /usr/local/apache/libexec/
- On Windows, usual location :
- C:\Program Files\Apache Group\Apache\modules\
- C:\Program Files\Apache Group\Apache2\modules\
(more…)