mysql bind-address vs mysqlx-bind-address setting to allow remote connection

Viewed 5551

I've found a new setting variable in the mysql 8.0 config file (mysqlx-bind-address)

Should i set it to: 0.0.0.0 with the bind address to allow remote connection?

Example:

# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address            = 0.0.0.0
mysqlx-bind-address     = 0.0.0.0
1 Answers

setting bind-adress is sufficient mysqlx-bind-address is for the X plugin if you want to know more about the X plugin you can go here

Related