• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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