apache 연동이 아닌 resin 단독으로만 웹서버를 구현하는 방법입니다.
1. 설치
# cd /usr/local/src
# wget caucho.com/download/resin-4.0.36.tar.gz
# tar xvzf resin-4.0.36.tar.gz
# cd resin-4.0.36
# ./configure –with-java-home=/usr/java/jdk1.6.0_23
# make
# make install
2. 설정
기본으로 구동되는 포트 8080 을 80으로 변경합니다.
# vi /etc/resin/resin.properties
web.http 80 app.http 80 |
기본 소스 디렉토리는 /var/resin/doc 입니다.
이것을 사용자 디렉토리로 변경 합니다.
# vi /etc/resin/resin.xml
<cluster id=”app”>
이 사이에 있는 host 를 수정합니다.
</cluster>
<host id=”” root-directory=”.”> <!– – webapps can be overridden/extended in the resin.xml –> <web-app id=”/” root-directory=”webapps/ROOT”/> </host> 에서 web-app 부분을 아래와 같이 변경합니다. <web-app id=”/” root-directory=”/home/cloudv/public_html”/> |
3. 구동
# /etc/init.d/resin start
[polldaddy rating=”7739789″]