问题描述
如何在 Linux XAMPP 1.7.3 中将 default-storage-engine
设置为 InnoDB?
How do I set the default-storage-engine
to InnoDB in Linux XAMPP 1.7.3?
推荐答案
最简单的方法就是到 mysql 配置文件(Windows 中的 my.ini,Linux 中的 my.cnf)并添加以下内容:
The easiest way is just to go to the mysql config file (my.ini in windows, my.cnf in Linux) and just add this:
[mysqld]
default-storage-engine=InnoDB
这假设您已启用 InnoDB
,这是另一个主题,但有很多 回答如何做到这一点.您始终可以在 XAMPP 上的 phpMyAdmin 中检查默认存储引擎:只需单击服务器,然后单击引擎,然后单击特定引擎(如 MyISAM),然后查看它是否显示 MyISAM 是此上的默认存储引擎MySQL服务器
.
This assumes that you have enabled InnoDB
, which is another topic, but there are plenty of answers on how to do this. You can always check the default storage engine in phpMyAdmin on XAMPP: Just click on the server, then on engines, then on a particular engine (like MyISAM), and then see if it says MyISAM is the default storage engine on this MySQL server
.
这篇关于XAMPP中如何将默认存储引擎设置为InnoDB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!