Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I keep MYSQL and WAMP Server running together?

Tags:

mysql

wamp

At first, I use Struts 2 to develop a website in Java web technology. So I installed Apache Tomcat as the localhost server and MYSQL as the database (MYSQL here is the full application from mysql.com, not the packages like XAMPP or WAMP...)

But now I switch to learn a little bit about PHP so I install WAMP full package. When I start all services of WAMP and go to browser and type localhost, everything work fine

But when I go to localhost/phpmyadmin, it seems to connect to the old MYSQL application in my computer (what I've used in Java web). And then I restart computer and use MYSQL Workbench (in the MYSQL application), but now it connects to the database of WAMP package, and I can not connect to the old database (in Java web) anymore

The solution is remove WAMP but I need WAMP for PHP

So I just want to ask how can I use MYSQL application and WAMP package together (MYSQL application for Java web and WAMP package for PHP)?

Thank you and apology for my bad English!

like image 986
piavgh Avatar asked Jul 13 '13 16:07

piavgh


1 Answers

Go to C:\Program Files (x86)\MySQL\MySQL Server 5.1 and open my (Configuration file) and then navigate to

[client]

port=3306

Change this to

[client]

port:3307

This will make phpmyadmin to run on 3306 and Java-Mysql to run on 3307

like image 80
user2216267 Avatar answered Oct 18 '22 20:10

user2216267