본문 바로가기
setting

[MacOS - M1] m1 Mac에 mysql 설치하기

by clolee 2022. 7. 18.

1. brew를 통해 mysql 설치

brew install mysql

 

2. mysql 버전 확인

mysql --version

 

3. mysql server 실행

mysql.server start

 

4. mysql 기본 설정

mysql_secure_installation

 

질문들 -

1) VALIDATE PASSWORD COMPONENT ( 복잡한 비밀번호 여부 ) : n

2) set the password (비밀번호 설정 & 확인)

3) Remove anonymous users? (익명 사용자 삭제) : y

4) Disallow root login remotely? (원격 접속 허용하지 않을 것인지) : y

5) Remove test database and access to it? (test DB 삭제 여부) : n

6) Reload privilege tables now? (변경된 권한을 반영하여 테이블 다시 로드) : y

 

마지막에 All done! 이 뜨면 설정 완료

 

5. mysql 접속

mysql -u root -p

root 계정에 password 사용해 접속.

 

6. mysql 상태 확인해보기

status

 

7. mysql 종료

exit

 

8. mysql server 종료

mysql.server stop

 

 

 

참고 :

https://velog.io/@haleyjun/MySQL-Mac%EC%97%90-MySQL-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-M1%EC%B9%A9

https://truecode-95.tistory.com/182

https://shanepark.tistory.com/41

 

댓글