본문 바로가기
카테고리 없음

[Spring Boot]Mac에 MySQL 설치하기

by Mr.noobiest 2022. 7. 13.
반응형

 

 

 

만들어질 게시판의 도메인 설계도  완료했고(ERD) 해당 도메인에서 설정해준 요소들(ID/Article ID / Title 등등)도 Class로 생성하였다,

 

이제 실제 데이터들이 쌓일 데이터 베이스를 구축하려고하는데, 가장 익숙하고 사용하기 편한 Mysql을 사용할것이다.

 

mac에서 어떻게 설치하는지 알아보자

 


 

1) 설치할것들 : mysql / mysql  workbench

1-1) mysql

https://dev.mysql.com/downloads/mysql/

 

MySQL :: Download MySQL Community Server

Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux - Generic Oracle Solaris macOS Source Code Select OS Version: All Windows (x86

dev.mysql.com

 

위 주소에서 자신에게 맞는 mysql을 설치하면된다.

 


 

1-2) mysql Workbench

https://dev.mysql.com/downloads/workbench/

 

MySQL :: Download MySQL Workbench

Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Red Hat Enterprise Linux / Oracle Linux Fedora macOS Source Code Select OS Version: All Windows (x86, 64-bit) Recommended Download: Other Downloads: Windows (x86, 64-bit), M

dev.mysql.com

1-1)을 먼저 설치한 후  mysql Workbench를 설치하면된다.

 


 

정상적으로 설치가 되었다면, 시스템  환경설정에 아래와 같이 mysql이 생성될것이다.

(만약 1-2)까지해도  안뜬다면 1-1)을 다시 설치해보자.

 

2) mysql Workbench를 실행한 후 Connection을 추가해준다,

이때 비밀번호는 1-1)을 설치할때 사용한 비밀번호를 그대로 사용하면된다.

 


 

 


 

 

3) IntelliJ의 우측을  보면 Database라는 자그마한 탭이 있는데, mysql을 선택하여 추가해준다,

(마찬가지로 비밀번호는 초기 비밀번호를  사용하면된다.)

 

설정 이후 Test_Connection을 실행하여 정상적으로 local-db와 연동되었는지 확인한다.

 

 

 

끝.

728x90
반응형