我正在尝试安装MySQL企业插件openssl_udf。我需要它来生成RSA密钥和RSA加密。我从甲骨文那里得到了openssl_udf.dll,并尝试了以下失败的代码。
INSTALL PLUGIN openssl_udf SONAME 'openssl_udf.dll'失败:
Error Code: 1126. Can't open shared library 'C:\Program Files\MySQL\MySQL Server 5.7\lib\plugin\openssl_udf.dll'和:
CREATE FUNCTION asymmetric_decrypt RETURNS STRING
SONAME 'openssl_udf.dll';失败:
Error Code: 1126. Can't open shared library 'openssl_udf.dll' (errno: 193 )有人知道怎么用吗?
资料来源:https://dev.mysql.com/doc/refman/5.7/en/install-plugin.html http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-installation.html
发布于 2016-07-11 08:57:16
所以这毕竟很简单。在第一次卸载MySQL服务器(社区)之后,我没有手动删除所有MySQL文件和文件夹,因此企业安装程序必须再次安装Community。在卸载和删除所有文件并重新安装之后,一切都正常。
https://stackoverflow.com/questions/38208672
复制相似问题