I noticed that XAMPP and Docker don't mix so I tried to change the MySQL port to 3307 instead of Default 3306 but all tries failed.
My Steps:
- Change the MySQL port from XAMPP Config [Services and Port Settings]
- Modify in [\xampp\properties.ini]
- Modify in [\xampp\mysql\bin\my.ini]
- Modify in [\xampp\php\php.ini]
- Add Port
$cfg['Servers'][$i]['port'] = 3307;
in [\xampp\phpMyAdmin\config.inc.php] - I tried to add the new port with host
$cfg['Servers'][$i]['host'] = '127.0.0.1:3307';
But not working either.
Restrat PC and Start xampp as admin, and MySQL service still running on 3306.
What should I do?
Thanks