abeyaz
abeyaz

Reputation: 3164

Mysql trying to load uninstalled plugin

In the past I've used mysql 5.6 handlersocket plugin, however then upgraded mysql to 5.7 and the handlersocket plugin is gone because it is not supported anymore. There is no real problem, because i dont use it anymore either.

The strange thing is now error log has the following line on server restarts:

[ERROR] Can't open shared library '/usr/lib/mysql/plugin/handlersocket.so' (errno: 2 /usr/lib/mysql/plugin/handlersocket.so: cannot open shared object file: No such file or directory)

It is true that this file does not exist, because i deleted it. But also information_schema.plugins table has no entry of handlersocket anymore. So, why does mysql still try to load this plugin ? Where does this information come from, event though the information schema doesnt have that anymore ?

Upvotes: 0

Views: 303

Answers (1)

abeyaz
abeyaz

Reputation: 3164

It turns out there is a record in mysql.plugins table. Deleting it removed the warning.

Upvotes: 1

Related Questions