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中,如何为每个组选择前2行 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01