프로젝트를 진행하던 중 Mysql과 MariaDB를 두가지를 사용하다 보니 혼용하게 되었다.
Mysql DB를 사용하고 있는데 MariaDB 드라이버를 사용하는 등 드라이버를 Mysql로 설정하였으나 MariaDB 드라이버를 사용하는 문제가 있어서 MariaDB를 삭제하기로 결정하였다.
iterm에 아래와 같이 작성한다.
brew services stop mariadb
brew uninstall mariadb
cd /opt/homebrew/var
rm -rf mysql
cd /opt/homebrew/etc
rm -rf my.cnf*
그럼 MariaDB가 삭제가 된다.