解决wrap_socket() got an unexpected keyword argument ‘ciphers‘

看报错本以为是一个简单的传参问题,没想到查到盘丝洞。

python 复制代码
# 报错信息
wrap_socket() got an unexpected keyword argument 'ciphers'
python 复制代码
# 报错代码段
@_exception_handler()
def connect(self):
    u"""连接MySQL数据库"""
    self.config_connect_args()
    if not self.get_conn():
        self.conn = mysql.connector.connect(**self.connect_config)  # 报错行
        self.set_sql_timeout()
        self.init_my_variables()
    return True

此问题在 这里 有说明,我对其总结如下:

python版本 mysql-connector-python版本 结果
2.6.6 2.1.3 正常
2.6.6 2.1.7 报错
2.6.6 8.0.5b1 报错

解决办法:

python 复制代码
# 1.查看当前服务器安装的mysql-connector-python版本号
python
Python 2.6.6
[GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mysql.connector
>>> mysql.connector.__version__
'8.0.5b1'
>>> exit()

# 2.查找mysql-connector-python的包名
rpm -qa | grep mysql
mysql-connector-python-8.0.5-0.1.dmr.el6.x86_64

# 3.卸载这个版本
rpm -e mysql-connector-python-8.0.5-0.1.dmr.el6.x86_64

# 4.安装2.1.3版本(注:如果有冲突,看是不是还有其他版本,都卸载掉)
rpm -ivh mysql-connector-python-2.1.3-1.el6.x86_64.rpm
Preparing...                ########################################### [100%]
   1:mysql-connector-python ########################################### [100%]

# 5.检测mysql-connector-python的版本是否正确
python
Python 2.6.6 (r266:84292, Nov 22 2013, 12:16:22) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mysql.connector
>>> mysql.connector.__version__
'2.1.3'
>>> exit()

完工,再测试,就不会有如标题的报错了。

相关推荐
winfredzhang16 分钟前
如何使用 python 中的 Pillow 创建可自定义的图标生成器
python·pillow·图标·png
qq_2739002341 分钟前
pytorch detach方法介绍
人工智能·pytorch·python
虞书欣的61 小时前
Python小游戏24——小恐龙躲避游戏
开发语言·python·游戏·小程序·pygame
液态不合群1 小时前
Mysql篇-三大日志
数据库·mysql
FHYAAAX1 小时前
【机器学习】任务十:从函数分析到机器学习应用与BP神经网络
开发语言·python
PyAIGCMaster1 小时前
python环境中,敏感数据的存储与读取问题解决方案
服务器·前端·python
小徍1 小时前
MySQL 8.0特性-自增变量的持久化
数据库·mysql
何曾参静谧2 小时前
「Py」模块篇 之 PyAutoGUI库自动化图形用户界面库
运维·python·自动化
pumpkin845142 小时前
客户端发送http请求进行流量控制
python·网络协议·http
smj2302_796826522 小时前
用枚举算法解决LeetCode第3348题最小可整除数位乘积II
python·算法·leetcode