为了能快速了解并处理您的问题,请提供以下基础信息:
Linux+cenos
MYsql一直报错:如下:
2024-08-23 12:12:56 9866 [Note] RSA private key file not found: /www/server/data//private_key.pem. Some authentication plugins will not work.2024-08-23 12:12:56 9866 [Note] RSA public key file not found: /www/server/data//public_key.pem. Some authentication plugins will not work.
意思是缺少这两个文件
我用解决方案:
openssl genrsa -out private_key.pem 2048
openssl rsa -in private_key.pem -pubout -out public_key.pem
但是生成不成功,目录下依旧没有这两个文件,求助
|
|