Using a home network, I have a MySQL Server on a WinXP machine and I'm trying to connect to it using the MySQL Query Browser GUI tool from a Vista Home Premium machine. I get the following error:
Could not connect to specified instance.
MySQL Error Number 2003
Can't connect to the MySQL server on 'MyServername' (10060)
I can ping the server successfully.
I've also tried the following to no avail ....
If the database server is running on a remote host it is possible the connection will fail with a message similar to the following:
Could not connect to the specified instance.
MySQL Error Number 1045
Access denied for user 'username'@'111.111.1.11'(using password: YES)
The reason for this is that the specified user has not been granted permission to access the database server from a remote system. This problem can be resolved on the server using the MySQL Administrator. Simply launch the MySQL Administrator tool on the system hosting the database server, select the User Administration option and select the required user from the list of users in the bottom left hand corner of the window. Once selected, click with the right mouse button on the user name and select Add Host. In the resulting Add Host dialog add the host name or IP address of the remote host to which you wish to allow connections and click on OK. Once the user has the appropriate privileges to connect from the specified host it should be possible to connect the MySQL Administrator client to the database server.
Any help will be appreciated.
ET
Could not connect to specified instance.
MySQL Error Number 2003
Can't connect to the MySQL server on 'MyServername' (10060)
I can ping the server successfully.
I've also tried the following to no avail ....
If the database server is running on a remote host it is possible the connection will fail with a message similar to the following:
Could not connect to the specified instance.
MySQL Error Number 1045
Access denied for user 'username'@'111.111.1.11'(using password: YES)
The reason for this is that the specified user has not been granted permission to access the database server from a remote system. This problem can be resolved on the server using the MySQL Administrator. Simply launch the MySQL Administrator tool on the system hosting the database server, select the User Administration option and select the required user from the list of users in the bottom left hand corner of the window. Once selected, click with the right mouse button on the user name and select Add Host. In the resulting Add Host dialog add the host name or IP address of the remote host to which you wish to allow connections and click on OK. Once the user has the appropriate privileges to connect from the specified host it should be possible to connect the MySQL Administrator client to the database server.
Any help will be appreciated.
ET