기본 콘텐츠로 건너뛰기

7일안에 비밀번호가 만기될 것입니다.

DEFAULT PROFILE의 PASSWORD_LIFE_TIME 설정이 UNLIMTIED 가 아니면
해당 에러를 만난다고 하네요 ㅠ
(expiry_date 가 도래)
1. SYS 계정으로 접속
(일반 user로도 가능하네요)
2. 쿼리
아래 쿼리를 날려 보세요 ~

3. 조회
급하게 날리느라 캡쳐를 못했는데 아래와 같이 PASSWORD_LIFE_TIME 이 180으로 조회 되었었습니다 ㅋ

4. 쿼리
아래 쿼리로 unlimited로 설정 ~
 해당 user 명에도 적용! 
password는 저걸로 바꾸는 거니까.....할 필요가 없을거 같기도...
 아래 명령어로 user 조회 시,

 아래와 같이 ACCOUNT_STATUS 가 OPEN 으로 변경,
EXPIRY_DATE가 NULL 값으로 변경된 것을 확인할 수 있습니다



참조 : http://gnujava.com/board/article_view.jsp?article_no=1485&menu_cd=30&board_no=17&table_cd=EPAR06&table_no=06

댓글

이 블로그의 인기 게시물

메이븐으로 라이브러리 인식

 간혹 퍼블릭 jar가 아닌 파일이 있는데 그럴때 쓰면 될듯 <dependency> <groupId> SimpleCryptLib </groupId> <artifactId> SimpleCryptLib </artifactId> <version> 1.1.0 </version> <scope> system </scope> <systemPath> ${basedir}/src/main/webapp/WEB-INF/lib/SimpleCryptLib-1.1.0.jar </systemPath> </dependency> version, scope, systemPath는 꼭 작성해야 한다 groupId, artifactId, version은 암거나 해도 되는거 같음 최근(2021.05.04)스프링 부트    < dependency > < groupId > NiceID </ groupId > < artifactId > NiceID </ artifactId > < version > 1.0 </ version > < scope > system </ scope > < systemPath > ${basedir}/src/main/resources/lib/NiceID.jar </ systemPath > </ dependency > 이걸 추가해주는것도 필요할지도..?? < build > < plugins > < plugin > < groupId > org.springframework.boot </ groupId > < artifactId > spring-bo...

mac 맥 맥북 Brew 완전 삭제

맥북에서 Brew 초기화 Brew를 써서 h2를 쓰려고 하는데 brew install h2가 안되서 이리 저리 알아보다가 완전 삭제 후 다시 설치 하니까 되서 그 방법을 남겨놈 1. 터미널에 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)" 입력후 y랑 뭐 비번.. 2. /usr/local 폴더에서 Homebrew 폴더 삭제 rm -rf Homebrew/ 권한설정으로 잘.....삭제하고 3. 다시 설치 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 좀 오래걸리니까 기다려야한다는걸 배움... 출처.... https://discourse.brew.sh/t/error-no-formulae-found-in-taps/8331/9