nugawiki

./categories/os

macOS Homebrew MySQL 설치

업데이트 2026-07-21 조회수

macOS Homebrew MySQL

brew install mysql
brew services start mysql
mysql -u root
mysql_secure_installation

Workbench: brew install --cask mysql-workbench

MySQL 8 caching_sha2_password

ALTER USER 'root'@'localhost'
  IDENTIFIED WITH mysql_native_password BY '비밀번호';

./comments