페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

(작성 당시 최신 버전으로의 업그레이드를 고려하고 작성된 문서입니다.)

1. 500버전 (Tomcat 9.0.84.0 → 9.0.

...

X)

※ 본문 중 9.0.X 부분은 적용 버전에 맞게 변경하시기 바랍니다.

코드 블럭
languagebash
titlePostgreSQL 업그레이드 쉘
## AUD 자동 설치본을 기준으로 작성하였습니다.
## 자동 설치본 경로 : /AUDPlatform
## APP 실행 계정 : AUD

# 1. 사전 확인 & 백업
./AUDPlatform/bin/commander.sh -k was
tar czf /AUDPlatform/apps/tomcat_back.tar
mv /AUDPlatform/apps/tomcat /AUDPlatform/apps/tomcat_back


# 2. 최신 Tomcat 9 다운로드 및 검증
cd /AUDPlatform/apps
curl -O https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.108X/bin/apache-tomcat-9.0.108.tar.gz
curl -O https://downloads.apache.org/tomcat/tomcat-9/v9.0.108X/bin/apache-tomcat-9.0.108.tar.gz.sha512
sha512sum -c apache-tomcat-9.0.108x.tar.gz.sha512


# 3. 압축 해제 & 새 버전 준비
tar xvf apache-tomcat-9.0.108X.tar.gz
mv apache-tomcat-9.0.108X tomcat


# 4. 설정 변경 적용 : 초기 설정에서 기존 conf와 bin만 수정
cp -pvfr /AUDPlatform/apps/tomcat_back/conf /AUDPlatform/apps/tomcat/conf
cp -pvfr /AUDPlatform/apps/tomcat_back/bin/AUDPlatform/apps/tomcat/bin


# 5. 버전 확인
./AUDPlatform/apps/tomcat/bin/version.sh


# 6. Start
./AUDPlatform/bin/commander.sh -s was


2. 510버전 (Tomcat 10.1.41.0 → 10.

...

X.

...

X.

...

X)

※ 본문 중 10.1.X.X 부분은 적용 버전에 맞게 변경하시기 바랍니다.

코드 블럭
languagebash
titlePostgreSQL 업그레이드 쉘
## AUD 자동 설치본을 기준으로 작성하였습니다.
## 자동 설치본 경로 : /AUDPlatform
## APP 실행 계정 : AUD

# 1. 사전 확인 & 백업
./AUDPlatform/bin/commander.sh -k was
tar czf /AUDPlatform/apps/tomcat_back.tar
mv /AUDPlatform/apps/tomcat /AUDPlatform/apps/tomcat_back


# 2. 최신 Tomcat 10 다운로드 및 검증
cd /AUDPlatform/apps
curl -O https://dlcdn.apache.org/tomcat/tomcat-10/v10.1X.46X/bin/apache-tomcat-10.1X.46X.tar.gz
curl -O https://downloads.apache.org/tomcat/tomcat-10/v10.1X.46X/bin/apache-tomcat-10.1X.46X.tar.gz.sha512
sha512sum -c apache-tomcat-10.1X.46X.tar.gz.sha512


# 3. 압축 해제 & 새 버전 준비
tar xvf apache-tomcat-10.1X.46X.tar.gz
mv apache-tomcat-10.1X.46X tomcat


# 4. 설정 변경 적용 : 초기 설정에서 기존 conf와 bin만 수정
cp -pvfr /AUDPlatform/apps/tomcat_back/conf /AUDPlatform/apps/tomcat/conf
cp -pvfr /AUDPlatform/apps/tomcat_back/bin/AUDPlatform/apps/tomcat/bin


# 5. 버전 확인
./AUDPlatform/apps/tomcat/bin/version.sh


# 6. Start
./AUDPlatform/bin/commander.sh -s was

...