Mac의 MySQL(M1)
전제 조건
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
MySQL 설치
brew install mysql
brew services
를 시작해야 합니다.brew services start mysql
Note: To stop
mysql
we setbrew services stop mysql
MySQL 설정
비밀번호 없이
mysql -uroot
세션이 켜져 있으면 다음을 입력하여 세션을 종료할 수 있습니다.
mysql> exit
암호로
mysql_secure_installation
Note: ”Validate password component" needs a secure sequence of characters to set the password, this include as minimum 8 characters and other more patterns.
If we sety
(yes), it'll require that pattern, if we don't want that it, we just setn
(no).
# Remove anonymous users?:
y
#Disallow root login remotely?:
n
# Remove test database and access to it?:
y
# Reload Privilege tables now?:
y
mysql -uroot -p
그리고 비밀번호를 묻습니다.
Reference
이 문제에 관하여(Mac의 MySQL(M1)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/developemmanuel/mysql-in-mac-m1-17co텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)