MySQL Forums
Forum List  »  Newbie

Re: Having trouble Connecting to multiple instances on remote server
Posted by: Barry Galbraith
Date: March 21, 2013 05:35PM

How are you trying to connect?

sh> mysql -h host.name.com -P 3306 -u user -p
Should get you a request for user's password on the "normal" instance.
Use a different Port number for the other instances.

sh> mysql -h host.name.com -P 3307 -u user -p

sh> mysql -h host.name.com -P 3308 -u user -p

Make sure the ports are open in the firewall on the machine that has the mysql servers running on it.

Good luck,
Barry.



Edited 1 time(s). Last edit at 03/21/2013 05:35PM by Barry Galbraith.

Options: ReplyQuote


Subject
Written By
Posted
Re: Having trouble Connecting to multiple instances on remote server
March 21, 2013 05:35PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.