가비엘
'my.cnf' 태그의 글 목록

my.cnf

개발팁/개발 팁

'MySql' 로그인 시 인증메서드 미지원 오류, Authentication method 'caching_sha2_password' not supported by any of the available plugins.

'MySql' 로그인 시 인증메서드 미지원 오류 Authentication method 'caching_sha2_password' not supported by any of the available plugins. 'Authentication method 'caching_sha2_password' not supported by any of the available plugins.' 해당 오류는 MySQL 서버가 caching_sha2_password 인증 방식을 사용하는데 클라이언트가 해당 인증 방식을 지원하지 않을 때 발생합니다. 이 오류를 해결하기 위해 다음 두 가지 방법 중 하나를 시도해 볼 수 있습니다. 1. MySQL 버전 업그레이드 MySQL 클라이언트 라이브러리가 caching_sha2_pa..

개발팁/개발 팁

'MySql' 데이터베이스 접근거부시 처리방법, Access denied for user 'user'@'%' to database

'MySql' 데이터베이스 접근거부 시 처리방법 Access denied for user 'user'@'%' to database Access denied for user 'user'@'%' to database 오류는 사용자 'user'가 '%' 호스트 데이터베이스에 대한 접근을 거부했음을 의미합니다. 이 오류는 주로 사용자의 권한 설정에 문제가 있는 경우 발생합니다. 1. 접속 설정 확인 저는 이방법으로 해결했어요 MySQL 구성 파일 (my.cnf)을 수정하여 원격 접속을 허용하도록 수정해 줍니다. my.cnf 파일은 MySQL 설치 디렉터리의 etc 폴더에 위치합니다. my.cnf 파일을 에디터를 사용하여 열고 [mysqld] 섹션 내에 다음 설정을 추가합니다 bind-address = 0.0.0..