wdcp不支持innodb解决办法


查看mysql引擎:

mysql-> show engines;

show engines.png

如果没有“InnoDB”选项,请往下看

[root@AY140218104946759c8cZ ~]# mysql -uroot -pwdlinuxcn

mysql> show variables like 'plugin_dir';

+---------------+------------------------------+

| Variable_name | Value                        |

+---------------+------------------------------+

| plugin_dir    | /usr/local/mysql/lib/plugin/ |

+---------------+------------------------------+

1 row in set (0.00 sec)


mysql> exit    (退出mysql)

Bye

[root@AY140218104946759c8cZ ~]# cd /usr/local/mysql/lib/plugin/  (检查是否有ha_innodb.so如果没有就去下载对应版本的这个文件,如果有就往下执行)

进入mysql管理后台 执行 install plugin innodb soname 'ha_innodb.so' 就ok了。


查看mysql引擎:

mysql-> show engines;