如何在mysql中启用INNODB

发布于 2024-10-13 01:33:40 字数 87 浏览 3 评论 0原文

当我在 MySQL 中执行查询时,它返回一个错误,指出 InnoDB 未启用。当我点击存储引擎时,InnoDB被禁用。

如何启用 InnoDB?

When I execute a query in MySQL it returns an error saying that InnoDB is not enabled. When I clicked the storage engine, the InnoDB was disabled.

How do I enable InnoDB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

乜一 2024-10-20 01:33:40

我遇到过类似的情况,在 mysql-server 升级后 InnoDB 被禁用。查询“显示引擎”未显示Innodb。按照此链接为我解决了这个问题。

    /etc/init.d/mysql stop

    cd /var/lib/mysql/

    ls ib_logfile*
    mv ib_logfile0 ib_logfile0.bak
    mv ib_logfile1 ib_logfile1.bak

    /etc/init.d/mysql restart

I faced a similar situation where InnoDB got disabled after a mysql-server upgrade. The query "show engines" didn't display Innodb. Following this link fixed the issue for me.

    /etc/init.d/mysql stop

    cd /var/lib/mysql/

    ls ib_logfile*
    mv ib_logfile0 ib_logfile0.bak
    mv ib_logfile1 ib_logfile1.bak

    /etc/init.d/mysql restart
愁杀 2024-10-20 01:33:40

my.ini(位于 MySQL 文件夹中)中,在 'skip-innodb' 之前放置一个 # 符号以禁用此命令。然后重启mysql。这将启用 InnoDB 引擎。

In my.ini (located in MySQL folder) put a # sign before 'skip-innodb' to disable this command. Then restart mysql. This will enable InnoDB engine.

奶茶白久 2024-10-20 01:33:40

如果你的 InnoDB 在 mysql-server 升级后被禁用,你需要做的最初是在服务器启动时设置 plugin-load

[mysqld]

plugin-load="myplugin_1=myplugin_1.so;myplugin_2=myplugin_2.so";

然后指定 plugin_dir(插件目录)的路径名,可以通过以下 my.cnf 文件中的更改来完成

[mysqld]

ignore-builtin-innodb

plugin-load=innodb=ha_innodb_plugin.so

plugin_dir=/path/to/plugin/directory

If your InnoDB gets disabled after a mysql-server upgrade what you have to do Initially is to set plugin-load of at server startup using

[mysqld]

plugin-load="myplugin_1=myplugin_1.so;myplugin_2=myplugin_2.so";

And then specify the pathname to the plugin_dir(plugin directory) it can be done by following changes in the my.cnf file

[mysqld]

ignore-builtin-innodb

plugin-load=innodb=ha_innodb_plugin.so

plugin_dir=/path/to/plugin/directory
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文