프린트 하기

OS환경 : Oracle Linux6.8(64bit)


DB 환경 : Oracle Database 12.2.0.1


에러 : 12c r2 이상 버전에서 패스워드 파일 만들 때 발생하는 경고 메세지

$ orapwd file=$ORACLE_HOME/dbs/orapwadg1 password=oracle


OPW-00029: Password complexity failed for SYS user : Password must contain at least 8 characters.



해결 방법 : 12c r1 버전(포맷)으로 만들고 force 옵션을 준다.

$ orapwd file=$ORACLE_HOME/dbs/orapwadg1 format=12 force=y password=oracle



원인 : 12c r2 이상의 버전은 패스워드를 8자리 이상으로 해야하는 조건이 생겨서 발생한 경고 메세지



참조 : http://christian-gohmann.de/2017/05/08/orapwd-enforces-password-complexity-rules-in-12-2-0-1/