我正在尝试连接到在DigitalOcean上的远程服务器上托管的mysql服务器
local.py
但是我收到以下错误
const db = new Sequelize({
host: x.x.x.x,
port: 3306,
database: bar,
username: foo,
password: buz,
dialect: 'mysql'
})
此处,错误显示Unhandled rejection SequelizeAccessDeniedError: Access denied for user 'foo'@'y.y.y.y' (using password: YES)
(是我的公共IP地址)
为什么它违约我的公共IP?当我在配置中提到y.y.y.y
时?我在这里做错了吗?