반응형
1. yum으로 설치 가능한 톰캣 목록확인
yum list | grep tomcat
2. 톰캣 설치
sudo yum install tomcat8
sudo yum install tomcat8-admin-webapps
sudo yum install tomcat8-webapps
sudo yum install tomcat8-docs-webapp
간단한 서버 관리를 위해서 tomcat8-admin-webapps, tomcat8-webapps 패키지을 설치해준것이다
3. 기본 명령어
// Tomcat 시작
sudo service tomcat8 start
//Tomcat 종료
sudo service tomcat8 stop
//Tomcat 재시작
sudo service tomcat8 restart
'AWS' 카테고리의 다른 글
RDS_Mysql(Cannot Connect to Database Server) 오류 (0) | 2021.05.24 |
---|---|
Ec2_Linux_error! (Network error: Connection timed out) (0) | 2021.05.23 |
ec2_Liunx java 설치 및 환경 변수 설정 (0) | 2021.05.19 |
EC2 Linux 서버 생성(PuTTY이용) (0) | 2021.05.19 |
SSH란? (0) | 2021.05.18 |