상세 컨텐츠

본문 제목

[PostgreSQL] DataBase 연결 실패 pgjdbc: autodetected server-encoding...

개발

by monad 2021. 2. 15. 19:23

본문

에러 내용

Ä¡¸íÀû¿À·ù: »ç¿ëÀÚ "plm2"ÀÇ password ÀÎÁõÀ» ½ÇÆÐÇß½À´Ï´Ù 

(pgjdbc: autodetected server-encoding to be ISO-8859-1, if the message is not readable, please check database logs and/or host, port, dbname, user, password, pg_hba.conf)

dbeaver connection error

대응

1. 새롭게 생성한 유저가 로그인 가능하도록 설정한다. 필요에 따라 Superuser권한을 부여한다. 이하의 그림은 pgAdmin4에서 설정한 것이다.

pgAdmin에서의 설정

아래와 같이 SQL 문을 통해서 설정도 가능하다.

ALTER ROLE new_login_user_name
	LOGIN
    SUPERUSER
    CREATEDB
    CREATEROLE
    INHERIT
    REPLICATION
    PASSWORD 'login_user_pwd'

2. pg_hba.conf 파일을 수정하여 다른 IP에서 로그인이 가능하도록 설정한다.

이하를 C:\Program Files\PostgreSQL\10\data\pg_hba.conf에 추가한다.

# IPv4 local connections:
host    all        all        192.168.0.0/24        md5

 

관련글 더보기

댓글 영역