使用 sqlalchemy 读取 sql 数据库:OperationalError [Errno 111] 连接被拒绝

reading sql database with sqlalchemy: OperationalError [Errno 111] Connection refused

这工作正常

from sqlalchemy import create_engine
import pandas as pd

db_connection_str = 'mysql+pymysql://User:PW@localhost/DBName'
db_connection = create_engine(db_connection_str)

df = pd.read_sql('SELECT * FROM tablename', con=db_connection)

如果我用 IP 替换 localhost 它不会

from sqlalchemy import create_engine
import pandas as pd

db_connection_str = 'mysql+pymysql://User:PW@192.168.0.7/DBName'
db_connection = create_engine(db_connection_str)

df = pd.read_sql('SELECT * FROM tablename', con=db_connection)

OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on '192.168.0.7' ([Errno 111] Connection refused)") (Background on this error at: http://sqlalche.me/e/13/e3q8)

但是需要用 IP 替换 localhost,因为我想从客户端执行脚本。

编辑:在我的 /etc/mysql/my.cnf 中没有 bind-adddress: - 所以我添加了最后一行:

# The MariaDB configuration file
#
# The MariaDB/MySQL tools read configuration files in the following order:
# 1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
# 2. "/etc/mysql/conf.d/*.cnf" to set global options.
# 3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
# 4. "~/.my.cnf" to set user-specific options.
#
# If the same option is defined multiple times, the last one will apply.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.

#
# This group is read both both by the client and the server
# use it for options that affect everything
#
[client-server]

# Import all .cnf files from configuration directory
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mariadb.conf.d/

bind-address = 0.0.0.0

并执行sudo systemctl restart mariadb

现在我有一条新的错误信息:

InternalError: (pymysql.err.InternalError) Packet sequence number wrong - got 1 expected 0 (Background on this error at: http://sqlalche.me/e/13/2j85)

可在此处找到 InternalError: Packet sequence number wrong - got 1 expected 0 错误的解决方案:https://github.com/PyMySQL/PyMySQL/issues/971