./categories/os
macOS Homebrew MySQL 설치
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 '비밀번호';
관련 링크: https://devyurim.github.io/data%20base/mysql/2018/08/13/mysql-1.html
./comments