--mod_jk.soをコピーする
# cd /usr/lib/apache
# mkdir libexec
# cp mod_jp-eapi.so /usr/lib/apache/libexec
# mv mod_jk-eapi.so mod_jk.so
# chmod 755 mod_jk.so
--httpd.confフィルを編集する
# vi /etc/httpd/conf/httpd.conf
最終行に下記の1行を追加する
----
include /opt/jakarta-tomcat/conf/mod_jk.conf
----
--mod_jk.confファイルを編集する
# vi /usr/loacl/jakarta-tomcat/conf/mod_jk.conf
----
LoadModule jk_module /usr/lib/apache/libexec/mod_jk.so
AddModule mod_jk.c
JkWorkersFile /usr/local/jakarta-tomcat/conf/workers.properties
JkLogFile /usr/local/jakarta-tomcat/logs/mod_jk.log
----
--mod_jk.conf及びworkers.propertiesファイルを下記よりダウンロードし、
/usr/local/jakarta-tomcat/confにコピーする。
--mod_jk.conf
http://www.gs.sjts.co.jp/support/guide/install/mod_jk.conf
--workers.properties
http://www.gs.sjts.co.jp/support/guide/install/workers.properties
--Group Sessionをインストールする
# cp gsession-class-1.1.6.tar /usr/local/jakarta-tomcat/webapps
# tar zxvf gsession-class-1.1.6.tar.gz
# cd gsession
# /usr/jdk/bin/java -jar Install.jar
--Tomcatの起動
# /usr/local/jakarta-tomcat/bin/startup.sh
--apacheの再起動
# service restart httpd
Webブラウザより下記へアクセスする。
http://[Server_name]/gsession/servlet/gsession/
UserID:admin
Password:admin
しかし、現状
----
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
エラーがでてしまっています、、、