MySQL Variables port 数据库 参数变量解释及正确配置使用

本站中文解释

port是MySQL服务器设置的端口号,它表示MySQL服务器与其他进程和计算机之间通讯的唯一路径。port的默认设置是3306,如果你想改变MySQL服务器的端口号,你可以在MySQL的配置文件中修改port的值,在该文件的[mysqld]节中添加端口号: port=,其中为你要设置的端口号的值,然后保存该文件,重启MySQL服务器,这样MySQL服务器的端口号就改变了。

官方英文解释

port

Command-Line Format --port=port_num
System Variable port
Scope Global
Dynamic No
Type Integer
Default Value 3306
Minimum Value 0
Maximum Value 65535

The number of the port on which the server listens for TCP/IP
connections. This variable can be set with the
--port option.


数据运维技术 » MySQL Variables port 数据库 参数变量解释及正确配置使用