forums › forums › SQLyog › Using SQLyog › Another Error 1130
- This topic is empty.
-
AuthorPosts
-
-
October 5, 2011 at 7:55 pm #12470ProCheck SportsMember
Hi,
I've been using SQLyog for a while and it's a great product! I can connect to localhost and the MySQL DB on my ISP(Primas). I also have my internet access with them.
I've just signed on with a 2nd hosting company(HostPapa) but I'm keeping all of the above. When I try to connect to the MySQL DB on Hostpapa, I get the 1130 error which says that the dsl-ipaddress for Primas is not allowed to connect to this MySQL Server.
I'm connecting with the correct username/IP Address for HostPapa and not the one from Primas, although my internet connect is with Primas. Any ideas as to what the problem might be?
Thanks
Al
-
October 6, 2011 at 7:25 am #32702peterlaursenParticipant
There can be two reasons for this error.
1) The simple one
You should notice that a MySQL user is identified by both 'user' and 'host'. If no user exists where 'host' maches the host from where you connect in mysql.user table this error appears. In other words: if only a 'me'@'localhost' user exists then 'me' will not be able to connect from remote machines. If you have access you may execute
SELECT user, host FROM mysql.user;
.. but I understand that this is 'shared hosting'? In that case it can be difficult to get the information from the system and even more difficult to fix it.
2) The tricky one:
This can be dificult to resolve. We deal with it here http://webyog.com/faq/23_36_en.html
In this case we normally ask users to post their hosts file (/etc/hosts on Linux) and MySQL ocnfiguration. But also this can be a problem with shared hosting.
You could
* try (HTTP or SSH) tunneling. With tunneling you will connect from 'localhost'
* contact the ISP support. Maybe they will help and maybe not.
-
-
AuthorPosts
- You must be logged in to reply to this topic.