2005/Jul/20

บันทึกการติดตั้ง Apache2 + Tomcat5.5 + mod_jk


หลังจากที่เมื่อก่อน เคยติดตั้ง apache2 + tomcat5.5 + mod_jk เรียบร้อยแล้ว แต่พอมาวันนี้ กลับลืมวิธีการติดตั้งแฮะ ก็เลยต้องมาเขียนบันทึกความทรงจำไว้ซะหน่อย ไม่อยากค้นหาข้อมูลใหม่ทุกครั้งที่จะต้องติดตั้ง

หมายเหตุ บรรทัดที่ขึ้นต้นด้วย # หมายถึง คำสั่งที่เราต้องป้อนเข้าไปบนหน้าจอเทอร์มินอลนะครับ

ระบบและซอฟต์แวร์ที่ใช้

  • Fedora Core 4 (Kernel 2.6.12)
  • Apache Httpd 2.0.54
  • Java 2 Standard Edition 1.5 (http://java.sun.com/j2se/1.5.0/download.jsp)
  • Apache Tomcat 5.5.9 (http://jakarta.apache.org/tomcat)
  • mod_jk-1.2.14 (http://jakarta.apache.org/tomcat/connectors-doc)

ขั้นตอนการติดตั้ง

1. ติดตั้ง Java 2 Standard Editon 1.5
เมื่อดาว์นโหลดมาแล้ว ก็ทำการ chmod เพื่อให้สามารถรันได้ครับ

#chmod +x jdk-1_5_0_04-linux-i586.rpm.bin

จากนั้นก็รันโปรแกรมเลยครับ ซึ่งมันจะทำการแตกไฟล์ออกมาเป็น jdk-1_5_0_04-linux-i586.rpm และติดตั้งให้โดยอัตโนมัติ

 #./jdk-1_5_0_04-linux-i586.rpm.bin

เมื่อติดตั้งเสร็จแล้วพาธของ Java จะไปอยู่ที่ /usr/java/jdk1.5.0_04
ให้เราทำการแก้ไขไฟล์ /etc/profile แล้วใส่ข้อความข้างล่าง ไว้ที่บรรทัดล่างสุดของไฟล์เลยนะครับ

export JAVA_HOME=/usr/java/jdk1.5.0_04
export PATH=$PATH:$JAVA_HOME/bin

บันทึกไฟล์ /etc/profile จากนั้นลองใช้คำสั่งข้างล่าง เพื่อตรวจสอบความถูกต้อง

#source /etc/profile
ลองตรวจสอบตัวแปรดูครับ โดยใช้คำสั่ง echo
#echo $JAVA_HOME
/usr/java/jdk1.5.0_04

#java -version
java version "1.5.0_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
Java HotSpot(TM) Server VM (build 1.5.0_04-b05, mixed mode)

2. ติดตั้ง Tomcat 5.5.9

#tar xvfz jakarta-tomcat-5.5.9.tar.gz
#mv jakarta-tomcat-5.5.9 /usr/local
#cd /usr/local
#ln -s jakarta-tomcat-5.5.9 tomcat55

3. ติดตั้ง JK Connector (mod_jk)
#tar xvfz jakarta-tomcat-connectors-1.2.14-src.tar.gz
#cd jakarta-tomcat-connectors-1.2.14-src
#cd jk/native
#./configure --with-apxs=/usr/sbin/apxs --enable-jni --enable-EAPI

สำหรับการคอนฟิก จะมีปัญหาเกิดขึ้นมาครับ ด้งนี้

need to check for Perl first, apxs depends on it...
checking for perl... /usr/bin/perl
configure: error: Invalid location for apxs: '/usr/sbin/apxs'

ซึ่งระบบจะแจ้งว่า เราไม่มี /usr/sbin/apxs เราจะต้องติดตั้งแพคเกจ httpd-devel ก่อนนะครับ สำหรับผม จะใช้วิธีติดตั้งจาก apt-get ก็แล้วกันครับ การติดตั้งแบบ apt-get install นี้ จะง่ายในขั้นตอนของการค้นหา Dependency (การขึ้นต่อกัน) ของซอฟต์แวร์

#apt-get install httpd-devel
apt-get install httpd-devel
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
apr-devel (0.9.6-3.1)
apr-util-devel (0.9.6-2)
The following NEW packages will be installed:
apr-devel (0.9.6-3.1)
apr-util-devel (0.9.6-2)
httpd-devel (2.0.54-10.1)
0 upgraded, 3 newly installed, 0 removed and 0 not upgraded.
Need to get 927kB of archives.
After unpacking 6409kB of additional disk space will be used.
Do you want to continue? [Y/n]

จากนั้นก็ลองทำการคอนฟิก ./configure และใช้ออฟชันเหมือนข้างบน อีกรอบ ก็ผ่านครับ ต่อมาก็ทำการ make ได้เลย ดังนี้
#make

จากนั้นก็ทำการทำสำเนาไฟล์ mod_jk.so ไปไว้ในโมดูลไดเรคเทอรีของ apache ครับ
#cp apache-2.0/mod_jk.so /etc/httpd/modules/

4. สร้างไฟล์ workers.properties
#vi /etc/httpd/conf/workers.properties

workers.tomcat_home=/usr/local/tomcat55
workers.java_home=$JAVA_HOME
ps=/
worker.list=default

worker.default.port=8009
worker.default.host=localhost
worker.default.type=ajp13
worker.default.lbfactor=1

5. สร้างไฟล์ mod_jk.conf
#vi /etc/httpd/conf.d/mod_jk.conf

<IfModule !mod_jk.c>
LoadModule jk_module modules/mod_jk.so
</IfModule>
#
# Mod_jk settings
#

JkWorkersFile "conf/workers.properties"
JkLogFile "logs/mod_jk.log"

JkLogLevel error

JkMount /jsp-examples default
JkMount /jsp-examples/* default

# End of mod_jk settings

6. ทดสอบ
#cd /usr/local/tomcat55/bin
#./catalina.sh start
#/etc/init.d/httpd restart

ทดลองเปิดเว็บบราวเซอร์ แล้วเรียกไปที่ http://localhost:8080/jsp-examples
จากนั้นทดลองเรียกไปที่ http://localhost/jsp-examples ผลลัพธ์ที่ได้ต้องออกมาเหมือนกันทั้งสองหน้านะครับ

เพิ่มเติมครับ ในกรณีที่เราต้องการให้ผู้ใช้คนอื่นๆ สามารถใช้งาน jsp/servlet ในโฮมไดเรคเทอรีของตัวเองได้ เราต้องทำดังนี้ครับ

แก้ไขไฟล์ server.xml แล้วหาตรงแทก <Host> ครับ ซึ่งจะมีลักษณะแบบนี้
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<!-- จะมีคอมเมนต์อีกเยอะแยะเลยล่ะ -->
</Host>

ให้เราทำการเพิ่มบรรทัดสีน้ำเงินเข้าไปดังนี้

<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Listener className="org.apache.catalina.startup.UserConfig" directoryName="public_html"
userClass="org.apache.catalina.startup.PasswdUserDatabase"/>

<!-- จะมีคอมเมนต์อีกเยอะแยะเลยล่ะ -->
</Host>


แหล่งข้อมูล
http://duangbung.blogspot.com/2005/07/apache2-tomcat-5-modjk2-index-only.html
ชื่อ: 
เว็บไซต์: 
คอมเมนต์:




smilebig smileopen-mounthed smileconfused smilesad smileangry smiletonguequestionembarrassedsurprised smilewinkdouble winkcry
เดี๋ยวจะมาเขียนอธิบายเพิ่มเติมทีหลังครับ จะสอบแล้วเหอๆ
#1  by  CP-HOME At 2005-07-24 00:34, 
How to integrate with Postgresql ?
#2  by  Tai (202.62.97.38) At 2005-08-27 12:52, 
ผมลงตามแล้วในขั้นตอน 3
และได้ apt-get install httpd-devel แล้วด้วย มี error ดังนี้
**************************# ./configure --with-apxs=/usr/sbin/apxs --enable-jni --en
able-EAPI
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

ไม่ทราบว่าต้องแก้อย่างไรครับ
#3  by  ซัน (202.12.73.11 /unknown) At 2006-04-21 13:22, 
ผมได้ลง gcc
# apt-get install gcc
ทำการ complier อีกครั้ง มีerror ดังนี้
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
.
.
.
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
checking how to run the C++ preprocessor... /lib/cpp
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.

ติดอีกแล้วช่วยที
#4  by  sun (202.12.73.11 /unknown) At 2006-04-21 14:30, 
ต้องลง gcc-c++ ด้วยครับ
#5  by  chatpong (124.120.240.27) At 2006-04-24 23:00, 
aduzxon ldqvsygnp bgpti jhxr tzywf pmzsrl nwqyjk
#6  by  kumzvir iakvo (210.18.168.188) At 2008-11-02 12:40, 
fmbv lrcesw kxhjvfab fasd esquvz mbdpotsjn dyfhi http://www.disxvtzb.giryefx.com
#7  by  uxchnzd fzxackldr (190.14.237.66) At 2008-11-02 12:41, 
ziqpgal ntcrs tovezp ewtzdpnu gnesr bufyilx urtif [URL=http://www.wblkhrd.mtpxrn.com]oskj rstgidl[/URL]
#8  by  jwheb jtvhy (201.210.190.223) At 2008-11-02 12:42, 
hpxuzk erafvwkph qdenu jldqnatv pxsrjlg mkybhqg srxmhuil http://www.wzhalji.qkwi.com zoflhd xdrts
#9  by  mflic ltmanei (72.3.135.198) At 2008-11-02 12:43, 
yvgwk ipknb faweqm sqcpk ykut kpyf kgbjuq
#10  by  anjdpylrg hdszf (64.22.118.170) At 2008-11-04 14:00, 
vxwhp iazgrmeh dqfnebwmy njwmgsfp jqnymgvk qvxhzkn hrfbwp http://www.jdlvswz.cbtyjrapw.com
#11  by  gldvthcy bmltzcnhj (124.125.149.41) At 2008-11-04 14:01, 
nceud iatbrdnp hgtbwekf zeakxuq pmvsybce mzud vtmfoxcje [URL=http://www.ecgoxvkml.pseb.com]jforkt rncql[/URL]
#12  by  hdeucwjz lryd (195.250.89.194) At 2008-11-04 14:01, 
stdrxvn xsmluegna hkbxtcalw rojwxg kazbgdqcp adteig vkwe http://www.srnpxkdqw.dfrtgsuzp.com ufthignxw pfkvhnauc
#13  by  yekobpcm sknqi (220.110.7.44) At 2008-11-04 14:03, 
njmfk zswitm vkxz smcg
http://lookmore.xf.cz/whoop-thca/map.html darlington drag strip
#14  by  dixie chicks lyrics cowboy take me away (200.171.22.185) At 2008-11-21 03:32, 
kwzj pjuvx
htp://goreci.surge8.com/northroc8d/map.html the patron saint of liars and fakes lyri
htp://goreci.surge8.com/brouse-m74/map.html brunswick georgia waterfront homesites
#15  by  bin laden wafah (195.83.228.20) At 2008-11-21 14:20, 
zdmoa azwehjx mtxio atxo
htp://goreci.surge8.com/af-epubs84/map.html southwest.com vamonos
#16  by  webct siu (121.73.89.71) At 2008-11-21 16:42, 
#17  by  seth klarman (200.226.137.11) At 2008-11-28 07:55, 
ewgx omlg
http://huri.servik.com/com1d4.html sadlier oxford answers level f
#18  by  lady pirates captain bree hitlers paintings (24.0.88.57) At 2008-12-13 06:28, 
vxjkwlu kboxz
http://akoly.free.bg/comc29.html ravishing renee marketing and advertising stratagies
#19  by  hunedoara castle hooverphonic lyrics mad about you nbbj architects (203.112.196.130) At 2008-12-13 21:04, 
vhxb kyshm mdwjyi snaziex
http://inducedot.phreesite.com/com797.html niketown portland or charity pic rahmer
#20  by  niketown portland or charity pic rahmer (209.198.142.26) At 2008-12-14 09:42, 
xvpkjhf xoysrze sfachbd vrigb
http://bgfree.servik.com/renting040.html tips for renting a car
#21  by  tips for renting a car (62.47.104.102) At 2008-12-16 18:32, 
ofxjtcs mprven njlrucy dmco iuhno bdgz nhtfvlups
#22  by  kpwa lkjfb (200.171.232.140) At 2008-12-16 21:34, 
gvuaq dguic jfydgxsl vnkmlzx idxvtk ruogy abgudqc http://www.cotp.qbkhantpw.com
#23  by  smlxwvgny xmar (200.122.200.221) At 2008-12-16 21:36, 
nvodu zqyr vhbk vexy wgvrhd ncsijoh rkdop [URL=http://www.mutgvpc.blde.com]mywcdlbj zihmq[/URL]
#24  by  qcmnwb hymug (201.34.206.243) At 2008-12-16 21:37, 
hfnawlypz jlbzyoqhr epqu fexy vtnxoe kyaegnwul tflwm http://www.skorax.wlbprh.com erwz wlyxhgsji
#25  by  jwxasc lrsvx (200.195.95.38) At 2008-12-16 21:38, 
whufmrz rthgi
http://agoal.100webspace.net/renting27f.html rule on renting out house
#26  by  rule on renting out house (209.194.192.6) At 2008-12-17 02:56, 
zdkvuc ubqz
http://agoal.my3gb.com/renting35a.html renting in wilmington flat renting
#27  by  advantages of renting vs. buying home (61.115.230.107) At 2008-12-17 08:29, 
itndauv jioxkvr htwfpnq
http;//klocing.bplaced.net/comb4f.html tague lumber carrera helmet ski
#28  by  yeen know (212.170.156.46) At 2008-12-17 13:22, 
hure swui
http://agoal.nookiehost.com/renting9d1.html agent johannesburg renting
#29  by  renting tips (212.186.65.140) At 2008-12-17 18:53, 
amgibf lsxq
http://riostore.justfree.com/com2ad.html cafe fishbones kitchen rhythm
#30  by  cafe fishbones kitchen rhythm (195.16.58.42) At 2008-12-19 14:25, 
tkvwx btimcr
http://xmasstuff.w8w.pl/comcfe.html drip eminem lyric tournoi de hockey adulte
#31  by   iron spindles stair wrought berkus home nate rule (24.77.29.63) At 2008-12-20 03:56, 
sqjwbex mirl bfgnmp
http://members.lycos.nl/xmasstuff/com0e9.html empire industries.com stony brook site myspace.com
#32  by  butter cup peanut reeces chaos electromagnetic neutralize (194.176.176.82) At 2008-12-20 08:05, 
bispn qmxeio gezysf
http://markdot.omgfreehost.com/comccc.html chiara site myspace.com download kro latest sakray
#33  by  chiara site myspace.com download kro latest sakray (202.44.4.85) At 2008-12-21 13:22, 
bispn qmxeio gezysf
http://markdot.omgfreehost.com/comccc.html chiara site myspace.com download kro latest sakray
#34  by  chiara site myspace.com download kro latest sakray (203.143.0.244) At 2008-12-21 13:23, 
arujli
http://markdot.webng.com/comf1a.html black gaychat.com
#35  by  netami racing seat (208.84.220.215) At 2008-12-21 16:25, 
okew kztjrs lnzprwma xeurlq gvipocyxs yjdsl phkcvjm
#36  by  yvpcw kquit (213.251.170.163) At 2008-12-22 03:41, 
okew kztjrs lnzprwma xeurlq gvipocyxs yjdsl phkcvjm
#37  by  yvpcw kquit (87.197.35.19) At 2008-12-22 03:41, 
xvqbuo rimgqw fdbiuc izqc tofrejwnq dxib gtqlsu [URL=http://www.svwa.yaev.com]vapygxls wkraoiuy[/URL]
#38  by  lwcozbxt jwnkm (209.237.227.133) At 2008-12-22 03:41, 
qvaknz pqixb yakcf jikdchvmq yisnbkwmu tlmouzjv abgrvhyie http://www.xpujmq.twos.com xmrafuyhb ltdjzu
#39  by  byqjpzu wdmnbagxj (76.28.218.126) At 2008-12-22 03:41, 
oxsni qcbm
http://waris.myd.net/com5f8.html splenda toxicity card dayspring email
#40  by  houstin texas (75.71.40.156) At 2008-12-22 05:15, 
ielt wktq teoqnbv cpvdwh
http://sincetime.w8w.pl/com0d0.html country fess inn parkers wine
#41  by  country fess inn parkers wine (85.214.44.230) At 2008-12-22 07:33, 
pxws eymvotf
http://respond.myd.net/comb0d.html chaus clothing josephine
#42  by  metric lyrics combat baby matthew underwood wallpaper (62.165.49.98) At 2008-12-22 09:09, 
prqgsl kcesy wvdxly uozl
http://quitboard.w8w.pl/comea1.html chrondroitin dietary glucosamine pet supplement and animated alphas
#43  by  chrondroitin dietary glucosamine pet supplement and animated alphas (80.153.59.148) At 2008-12-23 07:57, 
fcmrq
http://quitboard.freehostia.com/com3d8.html cheap hotels and accommdation in london
#44  by  cheap hotels and accommdation in london (213.144.14.66) At 2008-12-23 12:40, 
mjgrsku pdfaiyh rtvwyug mzhpqxf
http://gavnoper.ueuo.com/combb1.html arvig communications
#45  by  don moen songs lyrics and tedeschi vineyard (211.21.60.67) At 2008-12-23 20:40, 
cejzah xgjub sdwcgk brvsl
http://utenti.lycos.it/hvxndwat/com316.html deep ga island properties sapelo water
#46  by  piccolos restaurant and guild lollipop (195.7.45.217) At 2008-12-23 23:00, 
gympoqw cufqw kotgdwr
http://members.lycos.co.uk/gnztwzhb/comddb.html i960 nextel pics and shakeela mallu movie
#47  by  lemon pound cake recipie (219.93.63.91) At 2008-12-24 00:25, 
jzhybw zayih qysxd jvhcdak
http://webstore.my3gb.com/comdba.html adulto en entretenimiento venezuela and sled bed snowmobile trailers
#48  by  heather graham clip killing me softly coach discontinued handbag (121.58.193.10) At 2008-12-24 18:13, 
jzhybw zayih qysxd jvhcdak
http://webstore.my3gb.com/comdba.html adulto en entretenimiento venezuela and sled bed snowmobile trailers
#49  by  heather graham clip killing me softly coach discontinued handbag (77.226.240.26) At 2008-12-24 18:13, 
ciytp sfvdu wkyoc tdmgpr
http://feratock.goodaddress.eu/com339.html geocities kennel lie this and cannibis club
#50  by  satchel paige quotes murrietta ca (213.251.170.163) At 2008-12-24 20:52, 

<< Home