【MySQL】关于MySQLx协议和端⼝
⼀、关于MySQL X协议
MySQL X plugin是MySQL新发版本5.7.12中新增的插件,利⽤它实现MySQL作为⽂件存储数据库,也就是利⽤MySQL 5.7版本json⽀持的特性完成。
⼆、关于MySQL X plugin 的开启和关闭
MySQL启动之后监听了两个端⼝3306和33060,是为MySQL5.7.12 之后新增了X plugin。
这个插件默认是启⽤的,可以在配置配置⽂件/etc/myf 添加mysqlx=0关闭X plugin,也可以在启动时指定 --mysqlx=0 或 --skip-mysqlx选项来禁⽤X插件。
Port 3306 is the default port for the MySQL Protocol, which is used by the mysql client, MySQL Connectors, and utilities such as mysqldump and mysqlpump.
mysql下载starting the serverPort 33060 is the default port for the MySQL Database Extended Interface (the MySQL X Protocol).
The X Plugin can be disabled at startup by either setting  in your MySQL configuration file, or by passing in either  or  when starting the MySQL server.
Alternatively, use the  CMake option to compile MySQL Server without X Plugin.
三、参考
MySQL X 插件
Understanding MySQL X
Mysql 8 enable plugin X
MySQL Port Reference Tables MySQL Disabling X Plugin MySQL accidentally expose port

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。