Mysql – How to check what port thesql is running on

MySQLportunix

On my windows dev box mysql is running on port 3306

How can I check what port it is running on the unix server that I have to upload the app to.

Best Answer

I did

mysql> SHOW GLOBAL VARIABLES LIKE 'PORT';

And that indicated that I was using port 3306 and that my search for the error continues.