How to solve InnoDB: Unable to lock ./ibdata1 mysq

2019-03-11 02:29发布

2016-03-14 02:30:29 58150 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 35 2016-03-14 02:30:29 58150 [Note] InnoDB: Check that you do not already have another mysqld process using the same InnoDB data or log files.

3条回答
爷、活的狠高调
2楼-- · 2019-03-11 02:52

I guess it should say "There is another solution: the problem might be AppArmor". If you do not see an entry in /var/log/apport.log, then probably AppArmor is not the problem.

An intriguing solution, however.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-03-11 02:54

Believe it or not, the solution is elsewhere. The problem stems from AppArmor misconfiguration apparently.

So just do:

$ apt install apparmor-profiles

and then restart MySQL (notice how fast it'll restart).

I noticed a file missing related to AppArmor when doing:

$ systemctl status mysql.service

Voila.

查看更多
叛逆
4楼-- · 2019-03-11 02:59

First, list MySQL processes using the ps command:

ps aux | grep mysql

enter image description here

And then kill the process

sudo kill 56311
查看更多
登录 后发表回答