简体   繁体   中英

Connecting to external MySQL in ruby. ERROR 1130 (HY000)

I know that there are bunch of similar topics created, however, they do not answer my issue.

I started with a simple example to connect to my already created MySQL data. This is that I am working with:

require 'mysql2'

client = Mysql2::Client.new(:host => "dbIP_addr", :username => "db_usern", :password => "db_passw", :database => "db_name")

puts client

Unfortunately, I am getting an error:

ERROR 1130 (HY000): Host 'myIP_addr' is not allowed to connect to this MariaDB server

I followed several examples and they didn't help me. " Allow remote connections to your MySQL server " is the most understandable to me.

As I still have this issue, I need your help to help me understand where the problem is.

Appreciate your help.

您没有与源IP / dns匹配的'db_usern'用户(您应关闭主机身份验证的PTR查找)。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM