1. 登錄mysql
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設、做網(wǎng)站、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務北流,10余年網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:18980820575
[root@test /]# mysql -u root -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)
3. 修改端口,
編輯/etc/my.cnf文件,早期版本有可能是my.conf文件名,增加端口參數(shù),并且設定端口,注意該端口未被使用,保存退出。
[root@test etc]# vi my.cnf
[mysqld]
port=3506
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
"my.cnf" 11L, 261C written
[root@test etc]#
4. 重新啟動mysql
[root@test ~]# systemctl restart mysqld
5.再次登錄后檢查端口已修改為’3506’.
[root@test etc]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.66 Source distribution
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
在windows下一般是更改mysql安裝目錄的my.ini文件,把里面那個port=3306更改你想要的端口 在Linux下,一般是更改/etc/my.cnf文件,把里面那個port=3306更改你想要的端口 這樣更改完端口,重啟下服務就可以。這更改后的端口最好是1024后面的端口...
在配置文件my.ini中找到port 修改port的值j就可以,例如:
port=3307
重啟mysql服務,mysql的端口就改成3307了
先在服務里停止mysql的服務器
再找到mysql安裝目錄下面的my.ini文件,把里面的端口號3306替換成其它的端口號。
重啟mysql服務。
修改文件:my.ini or my.cnf 批量修改3306 替換成你要的端口號即可,保存重啟mysql服務在配置文件里添加比如3307[mysqld]port=3307 在你的系統(tǒng)目錄下有一個my.ini 文件,
WIN98下在WINDOWS
WINNT在WINNT
WINXP在WINDOWS內(nèi)容如下[mysqld]basedir=D:/MYSQL
#bind-address=192.168.0.2
datadir=D:/MYSQL/data
language=D:/MYSQL/share/chinese#tmpdir#=#port=3306其中port=3306就是端口了,
將#去掉就行了
一般情況下都在安裝目錄下,如果不再的話,就找一下c:\windows、c:\windows\system32下面或者使用windows的搜索功能找一下my.ini。
例如我的在:D:\Program Files\MySQL\MySQL Server 5.1\my.ini
如果是XAMPP安裝方式的就在xampp\mysql目錄下的相關.ini文件。
修改下面兩個地方:[client]
port=3306
[mysqld]
# The TCP/IP Port the MySQL Server will listen onport=3306
然后將3306改為你想要的端口號
備注:有兩個"port=3306",都需要改
3
如果提示修改不了可能需要把相關軟件和服務先停掉,win7的可能要以管理員方式打開,修改后要重啟服務才起作用。