How to change the default port of mysql from 3306 to 3360(如何将mysql的默认端口从3306更改为3360)
问题描述
我想修改 MySQL 服务器的默认端口号,目前是 3306,我想修改为 3360.
I want to change the default port number of MySQL server presently it is 3306. I want to change it to 3360.
我试过了:
-- port=3360
但是事情对我不起作用.请提供查询以更改端口而不是任何配置.我正在使用 Windows 8 64 位.
But things are not working for me. Please provide query to change port not any configuration. I am using Windows 8 64 bit.
推荐答案
您需要编辑您的 my.cnf 文件并确保您的端口设置如下:
You need to edit your my.cnf file and make sure you have the port set as in the following line:
port = 3360
然后重新启动您的 MySQL 服务,您应该就可以开始了.由于 port 不是动态变量(qv 此处查看 MySQL 文档,其中显示了所有系统变量的表格.
Then restart your MySQL service and you should be good to go. There is no query you can run to make this change because the port is not a dynamic variable (q.v. here for MySQL documentation showing a table of all system variables).
这篇关于如何将mysql的默认端口从3306更改为3360的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将mysql的默认端口从3306更改为3360
基础教程推荐
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 无法解决整理冲突 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
