1、登入mysql。
開啟終端機輸入指令:「# mysql -uroot -p」。
[root@localhost ~]# mysql -uroot -p
Enter password: 輸入資料庫密碼;
2、再輸入指令「show global variables like 'port';」查看連接埠號碼。
mysql> show global variables like 'port'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | port | 3306 | +---------------+-------+ 1 row in set (0.00 sec)
這裡3306即為連接埠號碼。
以上是ubuntu如何查mysql的連接埠號的詳細內容。更多資訊請關注PHP中文網其他相關文章!