• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

mysql connection from external host

W

w0uter

Guest
Hi,

I want that a external website can make a connection whit my mysql server. I want this because both websites (on different servers) are using the same database. Can someone tell me how i can fix that the other website can make a connection whit my musql server ?

Greets Wouter
 
In a shell, do this:

$ mysql -u admin -p

[enter admin password]

mysql > grant all on database_name.* to 'remote_user'@'remote_ip' identified by 'remote_user_password';
mysql > flush privileges;
mysql > \q

Et voilá!

Notes:

* refers to "all tables", if you want to give permission for just one table, use database_name.table_name.

"all" can be any specific permission (select, etc..), so you may grant select only to that external IP if you wish.

If you wish to grant access to any external IP, substitute remote_ip with %.
 
Back
Top