리눅스 톰캣7 컴파일 설치

Jmnote (토론 | 기여)님의 2013년 2월 3일 (일) 19:35 판
리눅스 톰캣7 설치

1 사전 작업

2 다운로드 및 설치

명령어
wget http://apache.mirror.cdnetworks.com/tomcat/tomcat-7/v7.0.35/bin/apache-tomcat-7.0.35.tar.gz
tar xzf apache-tomcat-7.0.35.tar.gz -C /usr/share/
ll /usr/share | grep tomcat
mv /usr/share/apache-tomcat-7.0.35 /usr/share/tomcat7

3 서비스 구성

/etc/init.d/tomcat7 파일을 만들어 service로 등록한다.

wget http://jmnote.com/tomcat/%etc%init.d%tomcat7 -O /etc/init.d/tomcat7
chmod 755 /etc/init.d/tomcat7
cat /etc/init.d/tomcat7

4 시작

service tomcat7 start
netstat -anp | grep :8080

5 방화벽

[root@jmnote ~]# iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT
[root@jmnote ~]# service iptables save
iptables: Saving firewall rules to /etc/sysconfig/iptables:[  OK  ]
[root@jmnote ~]# service iptables restart
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Unloading modules:                               [  OK  ]
iptables: Applying firewall rules:                         [  OK  ]

6 접속 테스트

7 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}