MySQL的連接埠預設為3306,但在安裝過程中有可能修改了MySQL連接埠。
1、登入mysql
[root@localhost ~]# mysql -uroot -pEnter password: 輸入資料庫密碼;
2、使用show global variables like ‘port&rsquo ;; 指令查看連接埠號碼,
mysql> show global variables like ‘port’; ————— ——- | Variable_name | Value | —— ——- | port | 3306 | ————— ——- 1 #row in set (0.00 sec)#> #3306即為連接埠號碼。
二、mysql埠號的修改
1、編輯/etc/my.cnf檔 [root@localhost ~]# vi /etc/my.cnf
#2 、新增port=2032;
3、重啟mysql [root@localhost ~]# /etc/init.d/mysqld restart
以上是Linux下如何查看MySQL埠的詳細內容。更多資訊請關注PHP中文網其他相關文章!