카테고리 없음
TIL/52/20230523
woongpang
2023. 5. 24. 09:01
728x90
맥 homebrew 로 설치된 mysql 삭제 방법
1. 우선 mysql 서비스를 중지한다.
brew services stop mysql
2. 설치되어 있는 mysql 을 삭제한다. (참고로 5.7버전이면 mysql 대신 mysql@5.7 을 입력)
brew uninstall mysql
3. mysql 관련 파일을 모두 삭제한다.
rm -rf /usr/local/var/mysql
4. mysql 설정 파일을 삭제한다.
rm /usr/local/etc/my.cnf
5. mysql 재설치
brew install mysql@8.0
728x90