티스토리 뷰
1. 아파치 톰켓 다운로드
* https://tomcat.apache.org/download-90.cgi#9.0.36
Apache Tomcat® - Apache Tomcat 9 Software Downloads
Welcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which version you need? Specification version
tomcat.apache.org
2. CentOS에 톰캣파일 전달
* 파일질라 같은 툴 활용
https://filezilla-project.org/
FileZilla - The free FTP solution
Overview Welcome to the homepage of FileZilla®, the free FTP solution. The FileZilla Client not only supports FTP, but also FTP over TLS (FTPS) and SFTP. It is open source software distributed free of charge under the terms of the GNU General Public Licen
filezilla-project.org
3. CentOS에서 unzip
3-1. unzip 설치 여부 확인
[devplay@localhost ~]$
[devplay@localhost ~]$
[devplay@localhost ~]$ yum list installed | grep unzip
[devplay@localhost ~]$
[devplay@localhost ~]$ rpm -qa | grep unzip
[devplay@localhost ~]$
[root@localhost /]# yum -y install unzip
[root ] $ mkdir /app
[root] chown -R devplay:devplay /app
3-2. JDK 설치
- [root@localhost ~]# yum -y install java-1.8.0-openjdk.x86_64
3-3. 톰캣 설치 및 실행
[devplay@localhost ~]$ unzip apache-tomcat-9.0.36.zip
[devplay@localhost ~]$ mv apache-tomcat-9.0.36 /app/tomcat
[devplay@localhost ~]$ cd /app/tomcat/bin
[devplay@localhost ~]$ chmod +x *.sh
*** 일반적으로 root가 아닌 일반 계정으로 구동
[devplay@localhost ~]$ cd /app/tomcat/bin
[devplay@localhost ~]$ ./startup.sh
[devplay@localhost ~]$ ps -ef | grep java
'centos 코스프레' 카테고리의 다른 글
폴더 접근하도록 소유자 변경 (0) | 2020.06.29 |
---|---|
방화벽 설정 및 해제 따라하기 (0) | 2020.06.27 |
centos 버전 확인 방법 (0) | 2020.06.26 |
centos 7.6 minimal 설치해보기 (0) | 2020.06.26 |