1. MySQL server 다운받기

아래와 같은 명령어로 brew에서 다운 받을 수 있는 mysql 버전을 확인 할 수 있습니다.

 brew search mysql

 

 

 

brew install mysql@5.7

 

 



 

 

 

 

 

← export PATH="/usr/local/opt/mysql@5.7/bin:$PATH

 

vi ~/.zshrc 에 위의 경로를 입력해주고

source ~/.zshrc 로 재시작 해줍니다.

 

 

 

 

 

 

 

 

 

2.  MySQL server 시작하기

brew services start mysql@5.7

 

3. MySQL server setting 하기

- mysql 접속

# 그냥 접속하기
$ mysql -uroot

 

- 패스워드 설정

# DB 선택
use mysql;

# 명령어
# update user set authentication_string=password('원하는 비밀번호') where user='root';
update user set authentication_string=password('root') where user='root';

#변경사항 저장
flush privileges;

 

- 패스워드 설정한 다음에는 mysql -uroot -p 로 접속하시면 됩니다.

 

4. MySQL Workbench 설치

아래로 가서 원하는 버전을 dmg 로 다운 받습니다.

url : 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 source software is provided under the GPL License.

downloads.mysql.com

뚜둔!

 

 

 

* dmg 파일을 더블 클릭 해주세요.

 

 

 

 

 

 

워크벤치 아이콘을 드래그해서

어플리케이션 폴더로 이동시켜주세요.

 

 

 

 

 

워크벤치를 클릭해주시고 아래와 같은 사항이 나오면 확인 눌러주세요.

 

이쁘게 뜬 것을 확인 할 수 있습니다.

+ Recent posts