#. 참고 글
https://blueyikim.tistory.com/2264
01. 서버 정지
component 정지
=> password : admin1234 시도해보기
=> 안되면 kill -9 으로 강제 정지
nodemanager 정지
=========================================
02. .wlst 디렉토리 백업
유저 홈 디렉토리/.wlst 디렉토리 통째로 백업
=========================================
03. password 초기화 스크립트 생성
username : admin
password : admin1234
로 세팅하는 예시
-----------------------------
vi password_reset.py
readDomain('/app/ohs/ohs_12214/domains/ehc_domain')
cd('SecurityConfiguration/ehc_domain')
set('NodeManagerUsername','admin')
cmo.setNodeManagerUsername("admin")
cmo.setNodeManagerPasswordEncrypted("admin1234")
updateDomain()
exit()
=========================================
04. password 초기화 실행
cd {OHS_HOME}/oracle_common/common/bin
./wlst.sh /......./password_reset.py
=========================================
05. 서버 재기동
nodemanager 기동
component 기동 (storeUserConfig 옵션 포함하여 기동)
유저 홈 디렉토리에
.wlst 디렉토리가 새로 생성되어 있다
'WEB - Apache 계열 > 각종 설정' 카테고리의 다른 글
[Apache] yum install 로 apache 설치한 환경에서 weblogic plugin 연동 (0) | 2023.04.12 |
---|---|
[Apache] cache 데이터 저장 가이드 (disk cache 사용) (0) | 2023.04.02 |
[Apache] Apache2.4 - server status 활성화 (0) | 2023.02.27 |
[OHS] HTTP Method 제한 방법 (apache2.4 문법 기준) (0) | 2023.02.27 |
[Apache] Apache2.4 - 보안 취약점 & 성능 개선 설정 변경 (0) | 2023.02.10 |