Meu arquivo é o mesmo. Você precisa adicionar o grupo correto acima do comando que está tentando colocar, caso contrário o serviço não começará.
Para adicionar bind-address
, você precisará adicionar [mysqld]
acima dela.
Se você precisa verificar quais são os grupos para os outros comandos, há um exemplo my.cnf
file aqui .
Se você quiser ativar conexões remotas de todas as interfaces , seu arquivo seria algo como abaixo, no entanto, certifique-se de configurar seu firewall corretamente se você usar 0.0.0.0:
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
[mysqld]
bind-address = 0.0.0.0
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/
Anote o grupo [mysqld].