How to enable FEDERATED engine in XAMPP

半腔热情 提交于 2019-12-08 13:28:43

问题


How can I enable the FEDERATED storage engine in the MySQL that comes with XAMPP distribution? I am using Version 1.8.3 of XAMPP with MySQL Version 5.6.16-log.

The INFORMATION_SCHEMA.ENGINES table shows that FEDERATED support is NO.


回答1:


In my.ini or my.cnf you should deactivate the option

skip-federated

For my my.ini I had to change:

# commented in by lampp security
# skip-networking
skip-federated

to

# commented in by lampp security
# skip-networking
# skip-federated


来源:https://stackoverflow.com/questions/25010788/how-to-enable-federated-engine-in-xampp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!