mysql更改端口号3306
2021-11-10 10:47:29
1、登录mysql
mysql -u root -p
2、查看MySQL当前使用的端口号
show global variables like 'port'
3、修改端口号
- 3.1 修改my.cnf文件,在[mysqld] 节点下增加以下内容
port=3307
- 3.2 重启MySQL使配置生效
4、执行第二步中命令检测修改是否生效
mysql更改端口号3306
2021-11-10 10:47:29
1、登录mysql
mysql -u root -p
2、查看MySQL当前使用的端口号
show global variables like 'port'
3、修改端口号
port=3307
4、执行第二步中命令检测修改是否生效