FIF's 코딩팩토리

상태: 실패 -테스트 실패: The server time zone value '���ѹα� ǥ�ؽ�' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use .. 본문

Database(데이터 베이스)

상태: 실패 -테스트 실패: The server time zone value '���ѹα� ǥ�ؽ�' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use ..

FIF 2019. 8. 19. 10:29
반응형

 

sqldeveloper로 mysql에 연결하던 도중, 아래와 같은 오류가 발생했다.

상태: 실패 -테스트 실패: The server time zone value '���ѹα� ǥ�ؽ�' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

찾아보니 mysql의 타임존을 설정 하라고 한다.

 

 

 

my.ini 파일에서 타임존을 설정 해야한다.

아래처럼 하면 my.ini 파일을 찾을 수 있다.

datadir이 my.ini파일의 위치다.

SHOW VARIABLES WHERE Variable_Name LIKE "%dir"

 

 

아마 C드라이브에 ProgramData가 아래처럼 안보일것이다.

 

당황하지말고,  경로를 복붙 해주자! 그럼 나온다.

 

C:\ProgramData\MySQL\MySQL Server 8.0

요기잉네~

 

 

 

mysqld 섹션에 아래와 같이 추가해주고 저장하면 된다.

default-time-zone='+9:00'

 

 

 

mysql을 restart해준다.(세미콜론 안붙여서 아래처럼 나온거임ㅋㅋ 되도록이면 한줄에 붙여주자..)

restart안해주면 똑같은 오류뜨니 꼭꼭 해주자!

restart;

 

 

 

드디어 성공!!!!

5시간정도 걸려서 해결한거 같다..... ㅠㅠ

 

 

 

 

반응형
Comments