기-억하기 위해 기-록을

[오라클]the password has expired 오라클 데이터베이스 암호 만료 본문

DB

[오라클]the password has expired 오라클 데이터베이스 암호 만료

seopark 2021. 3. 15. 13:18

the password has expired

오라클 데이터베이스 암호 만료 오류를 해결해보겠습니다.

 

sqlplus / as sysdba

 

1. 먼저 관리자 계정으로 로그인합니다.

sqlplus / as sysdba

 

 

select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

2. 비밀번호 유효기간을 알아보도록 하겠습니다.

select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

비밀번호 유효 기간은 180일이라는 것을 알 수 있습니다.

 

alter profile default limit password_life_time unlimited; commit;

3. 암호 기간을 무기한으로 설정합니다.

alter profile default limit password_life_time unlimited;

commit;

 

 

alter profile default limit password_life_time unlimited; commit;

4. 비밀번호를 변경하는 과정에서 missing or invalid password(s) 에러가 발생하였습니다.

'비밀번호' 로 작성한 것을 "비밀번호" 로 바꿔주니 비밀번호가 변경되었습니다.

ALTER USER 계정명 IDENTIFIED BY "비밀번호";

 

 

'DB' 카테고리의 다른 글

[Room] 스키마 확인 경고  (0) 2020.09.09
[MySQL] 날짜 자동 입력  (0) 2020.09.09
SQLite 관리 도구 설치 방법  (0) 2020.09.06