반응형

IT 30

MySQL connection failed: Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 해결 2

MySQL connection failed:  Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client    at Sequence._packetToError (/Users/user/Desktop/ManuServer/node_modules/mysql/lib/protocol/sequences/Sequence.js:47:14)    at Handshake.ErrorPacket (/Users/user/Desktop/ManuServer/node_modules/mysql/lib/protocol/sequences/Handshake.j..

IT/개발 2024.05.09

User Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 해결 1

MySQL과 Node.js 를 연동하려고 할 때 해당 에러가 발생User Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL clientMySQL 8.0에서는 MySQL 패스워드 플러그인 "caching_sha2_password" 때문에 에러발생아래와 같이 mysql.user를 보니plugin이 caching_sha2_password로 되어있다. 그래서 ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root'를 입력 해 플러그인을 바꿔주면 정상 작동 확인이 가능..

IT/개발 2024.05.08

[Mac] .net 설치 for mac

macOS에서 .NET을 설치하는 방법에 대한 간단한 설명해보자1. 아래 링크로 접속https://learn.microsoft.com/ko-kr/dotnet/core/install/macos macOS에 .NET 설치 - .NET.NET을 설치할 수 있는 macOS 버전에 대해 알아봅니다.learn.microsoft.com 2. .NET 다운로드 클릭 3. 버전 선택해 Arm64(M1), x64(Intel) 다운로드  4. 다운로드 후 설치 5. 설치 후 잘 설치되었다면 버전확인(  dotnet --version ) 버전이 나온다면 잘 설치되었다는 뜻이다.

IT/개발 2024.05.08

[Mac] node.js 설치 for Mac

Node.js는 JavaScript 런타임 환경으로, 서버 측 애플리케이션을 개발하는 데 널리 사용된다.1. Homebrew 설치https://jeces.tistory.com/168 [Mac] 맥북 Homebrew 홈브류 설치Homebrew는 macOS에서 패키지 설치 및 관리를 쉽게 해주는 패키지 관리 프로그램개발자, 연구원, 혹은 단순히 맥북을 더 효율적으로 사용하고 싶은 사용자들에게 필수적인 도구로 사용 1. Homebrew 웹jeces.tistory.comMac에 Node.js를 설치하기 위해 Homebrew를 사용해야하므로 설치가 안되어있다면 위 링크로 설치진행.1.1 터미널에서 [brew install node] 입력 후 설치진행 2. 홈페이지에서 Node.js 설치https://nodejs...

IT/개발 2024.05.02

[MySQL] Error Code: 1046. No database selected Select the. default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.

[MySQL] Error Code: 1046. No database selected Select the. default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.아래와 같이 Workbench에서 table을 생성하려고 하니 에러가 발생DB를 지정하지 않아 발생한 에러로테이블명 앞에 DB명 을 붙여주면 해결(DB명.테이블명)

IT/개발 2024.05.01

[Mac] 맥북 Workbench 설치 for mac

MySQL Workbench는 MySQL 데이터베이스를 관리하고 작업하는 데 사용하는 그래픽 사용자 인터페이스(GUI)필수 조건macOSMySQL (설치완료)1. MySQL Workbench 다운로드https://downloads.mysql.com/archives/workbench/ MySQL :: Download MySQL Workbench (Archived Versions)Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Workbench, please visit MySQL Downloads. MySQL open..

IT/개발 2024.05.01
반응형