pymysql库 计算机拒绝连接 怎么解决
本帖最后由 xyh2695368537 于 2022-12-7 19:45 编辑pip install pymysql 安装
代码如下:
import pymysql
db = pymysql.connect(host='192.168.0.1',user='root',password='123456',port=3306)
cursor = db.cursor()
cursor.execute('SELECT VERSION()')
data = cursor.fetchone()
print(data)
cursor.execute('CREATE DATABASE spiders DEFAULT CHARACTER SET utf8mb4')
db.close()
报错如下:
pymysql.err.OperationalError: (2003, "Can't connect to MySQL server on '192.168.0.1' ( 由于目标计算机积极拒绝,无法连接。)")
{:10_266:}
你的mysql是否正常安装,并能正常使用 你这是内网地址,是不是使用了代理服务器(Proxy),如果是,那就去掉试试。
页:
[1]