• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Remote connection to mysql database

E

Eck HongG

Guest
I'm using Plesk 8.6 and am finding it difficult to connect remotely to a mysql database. I've been looking at various literature online (e.g. http://kb.odin.com/1134, http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html etc) but do not understand how to go about doing this... The literature all leads to a point where I have to go "mysql>" prompt and I have no idea how to get there... I'm not sure whether this is relevant but I'm actually connecting remotely to mysql database via a php script that I wrote. Would greatly appreciate any assistance here.
 
Some clarifications - I checked the privileges for the mysql user account for the remote connection and it actually already allows connection from a remote server. Here's my my.conf file - there's no bind-address or skip-networking...


[mysqld]
set-variable=local-infile=0
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

[mysql.server]
user=mysql
basedir=/var/lib

[mysqld_safe]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
 
so from the remote system, try telneting to port 3306 (this is the mysql port). That would confirm that there is no network issue preventing you from accessing the host.
 
Back
Top