>>> 1. tomcat에 manager를 보안접속하기 위해 유저를 등록한다. (설치는 [CentOS 7] step5. 서비스 설정를 확인)
001
|
vi /usr/local/apache-tomcat-8.0.21/conf/tomcat-users.xml
|
001
002
003
004
005
006
007
008
009
|
# /usr/local/apache-tomcat-8.0.21/conf/tomcat-users.xml
<tomcat-users>
<!-- 추가 -->
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-jmx"/>
<user username="{계정ID}" password="{계정PW}" roles="manager-gui,manager-script,manager-jmx"/>
<!-- // 추가 -->
</tomcat-users>
|
>>> 2. maven – pom.xml 파일에 플러그인 (tomcat7-maven-plugin)을 추가한다.
001
002
003
004
005
006
007
008
009
010
|
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://{배포대상URL}/manager/text</url>
<username>{계정ID}</username>
<password>{계정PW}</password>
</configuration>
</plugin>
|
>>> 3. Goals 를 지정하고 Run을 실행한다.
>>> 4. 필요에 따라 다음과 같이 Goals를 지정한다.
- 최초배포 : tomcat7:deploy
- 재배포 : tomcat7:redeploy
- 배포삭제 : tomcat7:undeploy
'리눅스 관련' 카테고리의 다른 글
리눅스 - 서브 셀에 대한 개념 (0) | 2024.05.17 |
---|---|
Cent OS 7 - Tomcat9 manager gui 활성화 시키기 (0) | 2021.12.22 |
리눅스에서의 톰캣 실행 및 중지, 재실행 방법 (0) | 2021.12.04 |
CentOS 7 에서 톰캣(Tomcat) 9 설치 방법. (0) | 2021.12.04 |