728x90
준비
brew가 설치되어있는지 확인하기!
$ brew -v
설치
// MySQL 설치
$ brew install mysql
// MySQL 시작
$ mysql.server start
// MySQL 시작 후 기본설정
$ mysql_secure_installation
1. 비밀번호 설정
8자 이상
대문자, 소문자, 특수문자 모두 섞어야함
안섞을시 이런 오류나옴
Failed! Error: Your password does not satisfy the current policy requirements
1. Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
2. Remove anonymous users? (Press y|Y for Yes, any other key for No)
익명 사용자 삭제 : y
3. Disallow root login remotely? (Press y|Y for Yes, any other key for No)
원격 접속 허용하지 않을 것인지? : y
4. Remove test database and access to it? (Press y|Y for Yes, any other key for No)
testDB 삭제 할것인지? : n
5. Reload privilege tables now? (Press y|Y for Yes, any other key for No)
privilege table을 다시 로드 할 것인지 : y
사용
// mysql 사용하기
$ mysql -u root -p
// mysql 서버가 재부팅 상관없이 켜져있게 하기
$ brew services start mysql
728x90
'Database > MySQL' 카테고리의 다른 글
[Mac/Mysql/Docker] - [28000][1045] Access denied for user 'root'@'localhost' (using password: YES) (1) | 2022.12.01 |
---|---|
[RDBMS] 관계형 데이터베이스의 필요성 (0) | 2022.08.17 |
MySQL 스키마 사용 & 테이블 생성 (0) | 2022.08.17 |