首頁  >  文章  >  資料庫  >  ubuntu如何查mysql的連接埠號

ubuntu如何查mysql的連接埠號

WBOY
WBOY轉載
2023-06-03 21:46:022888瀏覽

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中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除