• 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.

Issue Plesk Onyx on Ubuntu - access to mysql remotely

digitalberg

New Pleskian
Hi all,

We are unable to connect MySql from any third party tools like HeidiSQL and unable to connect from Windows Server 2012 too.

For your reference following is the connection string of web.config file of Windows Server.

<add name="ConnMySql" connectionString="Server=62.88.88.80; Port=3306; Database=tdsm;Uid=mas1; Pwd=Dsdsdsd; " providerName="MySql.Data.MySqlClient" />

For your reference attached the screenshot of third party tools error.

Also, I have used this instruction but still no luck: How to enable remote access to MySQL database server

Please advice on this matter.

Regards
Q
 

Attachments

  • connection-error.png
    connection-error.png
    107.6 KB · Views: 11
Are you sure that there is no any specific firewall rules and port 3306 is not firewalled on this server?
I try to connect to this MySQL server from my server and see following:

$ telnet 62.88.88.80 3306
Trying 62.88.88.80...
telnet: connect to address 62.88.88.80: Connection timed out

Have you tried this test from your workstation?
 
Please accept my apologies, the IP address I mentioned is incorrect for security reason :)

Yes there is no firewall, but I managed to open 3306 port there was a small bug in the ubuntu, however, still struggling to grant access to specific IP from the p.2 : How to enable remote access to MySQL database server

Still getting the same error: Can't connect to MySQL server on 'server' (10061)
 
you have these 3 options when you are creating a database (as admin)

Access control
- Allow local connections only
- Allow remote connections from any host
- Allow remote connections from

If you are working on existing database, there is no option to change above options. Idea - you can create a new database with "Allow remote connections from any host" and import the old database.

Also make sure this is NOT in your my.cnf
[mysqld]
bind-address = 127.0.0.1 or localhost
 
If you are working on existing database, there is no option to change above options.
Sorry, this statement is incorrect.

If you desire to change existing privileges, you would login as "admin" over PHPmyAdmin ( => HOME > Tools & Settings > Database Servers - - choose the button/icon Plesk-Onyx_Tools-Settings_Database-Servers_customize.png at the right side of your datbase server ).
At the PHPmyAdmin - Interface, choose the desired database, go to "Privileges", choose the "global" or "database-specific" action "Edit privileges" and choose there

=> "Login information". ( Don't forget to choose the desired options at the bottom: "Create a new user account with the same privileges and …" after your changes! ;) )
 
Back
Top