如何将联合引擎安装到我的 mariadb?
How to install federated engine to my mariadb?
我知道很多 post 在 xampp 中提到了 mariadb 已经包含联合引擎,但不幸的是联合引擎还没有安装在我的 mariadb 中,你可以在 table 下面。
MariaDB [information_schema]> show engines;
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| CSV | YES | CSV storage engine | NO | NO | NO |
| InnoDB | DEFAULT | Percona-XtraDB, Supports transactions, row-level locking, foreign keys and encryption for tables | YES | YES | YES |
| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO |
| MyISAM | YES | MyISAM storage engine | NO | NO | NO |
| MRG_MyISAM | YES | Collection of identical MyISAM tables | NO | NO | NO |
| Aria | YES | Crash-safe tables with MyISAM heritage | NO | NO | NO |
| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO |
| SEQUENCE | YES | Generated tables filled with sequential values | YES | NO | YES |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
8 rows in set (0.00 sec)
我也尝试按照这里的指南和运行这个命令INSTALL PLUGIN federated SONAME 'ha_federatedx.so';
但是得到了错误ERROR 1126 (HY000): Can't open shared library 'D:\xampp\mysql\lib\plugin\ha_federatedx.so.dll' (errno: 2, The specified module could not be found.
。谁能告诉我如何在不重新安装 xampp 的情况下安装联合引擎?我的数据库版本是 mysql Ver 15.1 Distrib 10.1.10-MariaDB, for Win32 (AMD64)
我知道这个答案可能晚了几年,但今天早上我在 Windows 开发机器上遇到了同样的问题。我试过了...
INSTALL PLUGIN federated SONAME 'ha_federatedx.so';
... 但它没有用,我收到了与 Deno 相同的错误。经过一番查找,发现*.so文件是Linux个共享库文件,于是尝试了如下命令...
INSTALL PLUGIN federated SONAME 'ha_federatedx.dll';
... 成功了!唯一需要注意的是,我正在使用实际安装的 MariaDB,而不是安装在 XAMPP 中的版本,因此实际的 DLL 文件可能需要安装在 XAMPP.
中
希望这对遇到同样问题的其他人有所帮助。
我知道很多 post 在 xampp 中提到了 mariadb 已经包含联合引擎,但不幸的是联合引擎还没有安装在我的 mariadb 中,你可以在 table 下面。
MariaDB [information_schema]> show engines;
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| CSV | YES | CSV storage engine | NO | NO | NO |
| InnoDB | DEFAULT | Percona-XtraDB, Supports transactions, row-level locking, foreign keys and encryption for tables | YES | YES | YES |
| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO |
| MyISAM | YES | MyISAM storage engine | NO | NO | NO |
| MRG_MyISAM | YES | Collection of identical MyISAM tables | NO | NO | NO |
| Aria | YES | Crash-safe tables with MyISAM heritage | NO | NO | NO |
| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO |
| SEQUENCE | YES | Generated tables filled with sequential values | YES | NO | YES |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
8 rows in set (0.00 sec)
我也尝试按照这里的指南和运行这个命令INSTALL PLUGIN federated SONAME 'ha_federatedx.so';
但是得到了错误ERROR 1126 (HY000): Can't open shared library 'D:\xampp\mysql\lib\plugin\ha_federatedx.so.dll' (errno: 2, The specified module could not be found.
。谁能告诉我如何在不重新安装 xampp 的情况下安装联合引擎?我的数据库版本是 mysql Ver 15.1 Distrib 10.1.10-MariaDB, for Win32 (AMD64)
我知道这个答案可能晚了几年,但今天早上我在 Windows 开发机器上遇到了同样的问题。我试过了...
INSTALL PLUGIN federated SONAME 'ha_federatedx.so';
... 但它没有用,我收到了与 Deno 相同的错误。经过一番查找,发现*.so文件是Linux个共享库文件,于是尝试了如下命令...
INSTALL PLUGIN federated SONAME 'ha_federatedx.dll';
... 成功了!唯一需要注意的是,我正在使用实际安装的 MariaDB,而不是安装在 XAMPP 中的版本,因此实际的 DLL 文件可能需要安装在 XAMPP.
中希望这对遇到同样问题的其他人有所帮助。