Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I changed MySQL port in XAMPP, now how do I listen to the new port?

I have installed the latest XAMPP with MySQL version 14.14 Distrib 5.6.21, the problem is in my computer, I already have a MySQL database installed by other program that I am using.

So I configure the XAMPP MySQL port to 3307 (default is 3306) inside the my.ini file. However, now my localhost/phpmyadmin seems to read the database installed by the other program, not the one in XAMPP, and also when I test using some PHP files, it shows that I am connected to the database even though XAMPP is turned off (XAMPP MySQL also disconnected).

How do I change the setting of my PHPMyAdmin and localhost to connect to the MySQL port 3307?

I don't understand how all these ports and the database work.

like image 765
Charas Avatar asked Mar 02 '15 10:03

Charas


People also ask

How do I reconfigure MySQL and control panel to listen on a different port?

Scroll down to # The MySQL server. default-character-set=utf8mb4 [mysqld] skip-grant-tables=TRUE port=3306 socket="C:/xampp/mysql/mysql. sock" then change the port number from 3306 to 3307. Save file and close.

How do I connect to a different MySQL port?

How To Connect to MySQL Server on a Different Port? If your MySQL server is listening on port number different than 3306, you need to specify "--port=portNumber" option to any client program that needs to connect to the server.


Video Answer


1 Answers

Goto xampp>phpMyAdmin Directory.

Find the config.inc.php file.

Now change this line:

$cfg['Servers'][$i]['host'] = '127.0.0.1';

To

$cfg['Servers'][$i]['host'] = '127.0.0.1:3307';
like image 87
Pradeep Rajput Avatar answered Sep 19 '22 13:09

Pradeep Rajput