수복의 프로그래밍 여행기
article thumbnail

MAC 에 MySQL을 설치가 조금 특이해서 글로 남겨봅니다.

 

먼저 MySQL을 맥에 설치하기 위해 준비물이 필요

 

Mac용 패키지 관리자 Homebrew 를 설치 (링크) 

 

 

Homebrew

The missing package manager for macOS (or Linux).

brew.sh

 

my sql 설치를 위해 아래의 명령어 입력

 

brew install mysql

 

 

My SQL 시작합니다.

 

brew services start mysql

 

 

설치 후 확인

 

brew list

 

 

 

MySQL 서버 실행

 

mysql.server start

 

 

root 비밀번호 설정

 

"Would you like to setup VALIDATE PASSWORD component? 

Press y|Y for Yes, any other key for No" 

비밀번호 가이드 설정에 대한 질문

 

Yes - 복잡한 비밀번호 생성 (대문자, 소문자, 숫자 등 조합)

no - 간단한 비밀번호 생성 가능

 

새로운 패스워드 입력

 

"Remove anonymous users? 

(Press y|Y for Yes. any other key for No)"  

사용자 설정을 묻는 질문.  

Yes 또는 No를 입력    

Yes - 접속하는 경우 "mysql -uroot"처럼 -u 옵션 필요  

No - 접속하는 경우 "mysql"처럼 -u 옵션 불필요

 

 

"Disallow root login remotely? 

(Press y|Y for Yes, any other key for No)" 

다른 IP에서 root 아이디로 원격접속을 설정하는 질문. 

Yes - 원격접속 불가능

No - 원격접속 가능

 

"Remove test database and access to it? 

(Press y|Y for Yes, any other key for No)" 

Test 데이터베이스를 설정하는 질문

Yes - Test 데이터베이스 제거 

No - Test 데이터베이스 유지

 

"Reload privilege tables now? 

(Press y|Y for Yes, any other key for No)" 

변경된 권한을 테이블에 적용하는 설정에 대한 질문 

Yes - 적용시킨다. 

No - 적용시키지 않는다.

 

"All done!"

 

설치된 경로로 가지 않고 아래의 명령어를 통해 접속

 

"mysql -uroot -p"

 

비밀번호를 입력 후 로그인 가능

 

mysql>

 

형태로 변환

 

status; 명령어를 입력

설정확인

 

로그아웃 명령어

quit 또는 exit

 

sql서버 종료

 

MySQL.server stop

 

 

 

워크밴치 다운로드 (링크)

 

MySQL :: Download MySQL Installer

Download MySQL Installer Please report any bugs or inconsistencies you observe to our Bugs Database. Thank you for your support!

dev.mysql.com

 

 

이동만 하면 끝

profile

수복의 프로그래밍 여행기

@컴수복

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!