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

Connect to MySQL

S

screech8780

Guest
I am using DreamweaverMX 2004 and I cannot seem to connect to the databases on my remote server. I do not have a server installed locally, and do not plan on installing on. How do I get Dreamweaver to see my database?
 
You will need to open the database to external connections.

You can do this via mysql as root

login to mysql and run

use mysql;
UPDATE db SET Host='%' WHERE Db="YOURDBNAME";
UPDATE user SET Host='%' WHERE User="YOURUSER";
FLUSH PRIVILEGES

This will then open your server to external connections for that particular database.


(however i thought dreamweaver actually uploaded its own kind of proxy php files that it used so you didnt need to open external connections)
 
How do I login to MySQL through plesk? The only option I have seen to do anything with MySQL is to set the database to MySQL.
 
You need to be admin of the server to run the commands above. And do them via a ssh shell.
 
Okay, I've got the ssh terminal working. Which shell do I neeed to allow, eg. bin\bash, i tried inputing the commands but I kept getting "command not found". This should be the las that I need.
 
Back
Top