Skip to content

Instantly share code, notes, and snippets.

@hongsolo9
Created April 5, 2022 09:04
Show Gist options
  • Save hongsolo9/0b303b5ec26d37caf2c54db5fde4687d to your computer and use it in GitHub Desktop.
Save hongsolo9/0b303b5ec26d37caf2c54db5fde4687d to your computer and use it in GitHub Desktop.
Disable mysql x-protocol on IPv6, port 33060
[mysqld]
# Only allow connections from localhost
bind-address = 127.0.0.1
# mysql now comes with x-protocol and it opens a global listening port 33060 on IPV6
# To limit the global listening, enter below two lines
# If you want to disable X-protocol, uncomment the last line
mysqlx-port=33060
mysqlx-bind-address = ::1
# mysqlx = OFF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment