Answers for "mysql what port is it running on"

SQL
11

how to see what port mysql is running on

mysql -u root
mysql> SHOW GLOBAL VARIABLES LIKE 'PORT';
# Default port is 3306 for MySQL
Posted by: Guest on May-15-2021
0

netstat -tln mysql

lsof -n -P -i TCP -s TCP:LISTEN
Posted by: Guest on July-02-2020

Code answers related to "mysql what port is it running on"

Code answers related to "SQL"

Browse Popular Code Answers by Language