1. mysql 패키지 삭제
apt-get remove --purge mysql*
2. dpkg 패키지 설치
apt-get install dpkg-dev
3. mysql 관련 파일 확인
dpgk -l | grep mysql
4. 3번에서 확인한 파일들 하나씩 삭제
apt-get remove --purge {파일명}
5. 폴더 및 관련 항목 삭제
rm -rf /etc/mysql /var/lib/mysql
rm -rf /var/log/mysql
rm -rf /var/log/mysql.*
rm /var/lib/dpkg/info/*
apt-get autoremove
apt-get autoclean
6. 재설치
apt-get install mysql-server --fix-missing --fix-broken
참조: https://2vup.com/ubuntu-remove-mysql/
'Web > Server' 카테고리의 다른 글
[Linux] Ubuntu MongoDB 설치 (0) | 2022.08.24 |
---|---|
[Linux] MySQL 설치 & Port 변경 (0) | 2022.08.17 |
[Linux] 내가 주로 쓰는 명령어 정리 (0) | 2022.08.15 |
[Oracle DB] 오류 | ORA-12514 (0) | 2022.08.09 |