반응형

 

 

컴퓨터에 운영체제를 설치해야만 컴퓨터를 사용할 수 있는 것처럼, 자바를 이용하여 작성된 웹 어플리케이션은 WAS가 있어야만 실행할 수 있다. 이때 가장 많이 사용되는 WAS가 아파치 톰캣이다.

 

 

 

1. 톰캣 홈페이지에서 버전 8 다운받기

 

http://tomcat.apache.org 

 

Apache Tomcat® - Welcome!

The Apache Tomcat® software is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications ar

tomcat.apache.org

맥북에서는 tar.gz 파일을 받아서 압축 해제하면 된다.

 

 

 

 

 

2. apps라는 디렉토리 생성하고 거기에 톰캣 폴더를 넣어준다.

 

mkdir ~/apps
cd ~/apps
mv ~/Downloads/apache-tomcat-8.5.24 ~/apps/

터미널

 

3. 쉘확장자를 가진 파일들의 실행권한을 준다.

 

chmod +x ./bin/*.sh

 터미널

 

4. ls -al 로 권한이 부여되었는지 확인

-rwxr-xr-x@와 같이 마지막에 x 가 붙어있으면 정상적으로 권한이 부여된 것이다.

 

 

5. startup.sh 파일을 실행하여 톰캣을 켜준다.

 

./bin/startup.sh 

터미널

 

 

 

* 만약 아래와 같은 오류가 발생한다면

Cannot find bin/catalina.sh
The file is absent or does not have execute permission
This file is needed to run this program

 

아래 명령어를 실행하고 5번의 startup.sh 파일을 다시 실행시켜준다.

chmod +x bin/catalina.sh
반응형

+ Recent posts