MySQL主从ssl加密传输报错解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL主从ssl加密传输报错解决相关的知识,希望对你有一定的参考价值。

案例:今天实施mysql主从+SSL加密传输时候,master为slave签署证书有一个小小问题:

failedto update database TXT_DBerror number 2

技术分享

一开始没留意,最后导致在slave通过证书连接master时候报错证书错误。仔细检查才看到错误。


1、报错原因:

This thing happens when certificates share common data. You cannot have two 

certificates that look otherwise the same. 

意思当证书共享数据,不能两个相同。


2、解决方式:

2.1)修改index.txt.attr为no(采用)

[[email protected] CA]# cat index.txt.attr
unique_subject = no
[[email protected] CA]#

2.2)将comonName设置为不同

  在master和slave中,因为我用的名字都是renzhiyuan,才造成了这个问题。


3、slave重新登陆:(解决)

mysql-urepuser -pxxx -h192.168.1.220 --ssl-ca=/etc/mysql/ssl/cacert.pem--ssl-cert=/etc/mysql/ssl/slave.crt --ssl-key=/etc/mysql/ssl/slave.key

技术分享


本文出自 “永不放弃!任志远” 博客,请务必保留此出处http://renzhiyuan.blog.51cto.com/10433137/1885561

以上是关于MySQL主从ssl加密传输报错解决的主要内容,如果未能解决你的问题,请参考以下文章

MySQL主从复制使用SSL加密

mysql5.7:mysql安装和基于SSL加密的主从复制(详细剖析)

MySQL基于SSL协议的主从复制

mysql 加密连接SSL

SSL证书报错类型及解决方法

mysql基于ssl的主从复制