엄지월드

톰캣 8.5 설치 방법 본문

Server&DevOps

톰캣 8.5 설치 방법

킨글 2022. 7. 1. 22:32
반응형

1. 톰캣을 다운로드 받기 위해 wget 설치 

$ sudo apt install unzip wget

 

2. 톰캣 설치

$ wget https://dlcdn.apache.org/tomcat/tomcat-8/v8.5.81/bin/apache-tomcat-8.5.81.tar.gz

 

3. 압축 해제

$ tar xvf apache-tomcat-8.5.81.tar.gz

 

4. 톰캣 실행

$ cd ./apache-tomcat-8.5.81/bin
$ ./startup.sh

 

아래의 명령어를 주소창에 입력하여 톰캣이 잘실행되는지 알 수 있다. 

localhost:8080

 

'Server&DevOps' 카테고리의 다른 글

zsh: command not found: mysql  (0) 2022.09.07
[goormIDE] tomcat 실행 방법  (0) 2022.07.12
ubuntu 메모리 오버 시 처리 방법  (0) 2022.06.20
RESTful API  (0) 2019.02.06
톰캣 재시작 하는 방법  (0) 2018.11.18
Comments