카테고리 없음
[Mysql] 'The server quit without updating PID file (/opt/homebrew/var/mysql/SIsa-eobtim-ui-MacBookPro.local.pid)' 에러 해결
scofee
2024. 4. 4. 22:44
[이유]
PID file을 업데이트 하지 않고 서버가 닫힌 경우에 나는 에러입니다.
[해결책]
ps -ef | grep mysql
kill -9 [1번 줄에 의해 검색된 프로세스들의 PID들]
이렇게 한 후
mysql.server start
하면 정상적으로 실행된다.