가수면

MySQL Workbench 오류 본문

일지

MySQL Workbench 오류

니비앙 2023. 12. 14. 03:57

MySQL Shell을 사용해봤는데 직관적이지 않은 것 같아 Workbench를 사용해보려 설치하다가 두 가지 오류를 겪었다.

1. 버전 호환 문제

workbench를 설치하면서 server를 설치하고 mysql로 연결하는 과정에서 아래 오류가 발생했다.

 

Connection warning (local instance mysql)

incompatible/nonstandard server version or connection protocol detected (8.2.0)

connection to this database can be established but some Mysql workbench features may not work properly since the database is not fully compatible with the supported versions of MySQL.

MySQL workbench is developed and tested for MySQL server versions 5.6, 5.7, and 8.0

For MySQL server older than 5.6, please use workbench 6.3

 

이 경우 server가 8.2.0버전이기에 호환되지 않는다는 에러인데, mysql server를 8.0.34로 다운그레이드시켜 workbench의 버전에 맞게 둘 다 8.0.34로 통일시키면 해결된다.

 

만약 도커를 이용할 때 위 에러가 발생하는 경우 컨테이너를 생성할 때의 mysql 버전을 8.0.34로 설정하면 해결된다.

나 같은 경우 컨테이너를 생성할 때 8-oracle과 latest로 생성해서 버전 호환 이슈로 에러가 계속 발생하는 것이었다...

2. 언어 설정 문제

연결에 오류없이 성공했지만 연결 이후 아래 오류가 발생했다.

 

Could not acquire management access for administration

RuntimeError: Unable to execute command chcp.

please make sure that the C:\Windows\System32 directory is in your PATH environment variable.

 

C:\Windows\System32

C:\Program Files\MySQL\MySQL Server 8.0

둘 다 환경 변수로 설정했음에도 오류가 계속 발생했는데, 언어 설정을 해주면 되는 문제였다.

 

참고 블로그

https://quantpro.co.kr/my-sql-workbench-error-%EC%97%90%EB%9F%AC-%ED%95%B4%EA%B2%B0-could-not-acquire-management-access-for-administration/

 

My sql workbench error 에러 해결 : could not acquire management access for administration - QUANT PRO

1. 윈도우 언어 설정 접속2. 시스템 로캘변경 클릭 -> 아래 체크박스 클릭 🥕 위의 방법대로 시행한 후 재부팅을 하면 에러가 없어진다!! 환경변수 path 추가 : C:WindowsSystem32

quantpro.co.kr

 

Comments