Load To Technical Architect
[Oracle] ORA01017 - invalid username and password logon failed 본문
728x90
현상 : 설치한 Oracle 18C에 DBeaver를 사용하여 SYS 계정으로 로그인 하려고 하는데
ORA01017 - invalid username and password logon failed 에러 발생
> alter user sys identified by <password>;
위의 명령어로 갓 바꾼 싱싱한 패스워드로 로그인 하였는데 비밀번호가 틀리다고 나옴
해결 : orapwd로 패스워드 파일 재생성
$ cd $ORACLE_HOME/dbs
$ orapwd $ORALCE_HOME/dbs/orapw<DB SID>
Enter password for SYS: <Password>
이후 DBeaver로 접속 시도하면 sys 계정으로 로그인이 가능하다.
※ 주의 : orapwd<SID> 파일을 생성 할 때 SID의 대소문자를 구분하는듯 하다.. 환경 변수 ORACLE_SID를 잘 확인해야겠다.
728x90
'삽질 모음' 카테고리의 다른 글
[Jeus] JeusServer.log에 Java Application log가 기록이 안됨 (0) | 2022.05.17 |
---|---|
[Jeus] Data Source에서 SQL Server 연결시 발생하는 SSL 에러 해결 (0) | 2022.05.03 |
[Jenkins] sudo: no tty present and no askpass program specified (0) | 2022.01.21 |
[Jenkins] Send build artifacts over SSH 파일 전송 안됨 (0) | 2021.10.29 |
[Jenkins] Could not initialize class org.eclipse.jgit.internal.storage.file.FileSnapshot (0) | 2021.10.26 |
Comments