MySQL Restart Error: PID File Could Not Be Found Fix
How to Fix “MySQL Server PID File Could Not Be Found” Error
Possible causes are as follows:
1. An existing process is already running:
ps -ef|grep mysqld or ps -ef|grep mysql
kill -9 process_id
The specific service name can be adjusted according to your actual situation …