我正在Centos 7上使用MariaDB 10,但在配置文件中找不到[mysqld]部分

weylhg0b  于 2022-12-18  发布在  Mysql
关注(0)|答案(1)|浏览(174)
  • 森托斯7
  • 玛丽亚数据库10.6.11

/etc/my.cnf文件中何处可以找到[mysql]部分
这是所有我发现在/etc/my.cnf文件

#
# This group is read both by the client and the server
# use it for options that affect everything
#
[client-server]

#
# include *.cnf from the config directory
#
!includedir /etc/my.cnf.d

我想远程访问数据库服务器,需要在/etc/my.cnf文件中添加bind-address = 0.0.0.0

e3bfsja2

e3bfsja21#

bind-address是一个服务器选项,需要添加到[server]、[mysqld]或[mariadbd]节中。[mysql]组是命令行客户端使用的客户端节。
另请参阅:服务器选项组
这条线
!includedir /etc/my.cnf.d
声明my.cnf从/etc/my.cnf.d目录读取所有配置文件。
所以检查一下这个目录下的配置文件,如果没有配置文件或者配置文件都不包含服务器要读取的组,那么在/etc/my.cnf.d中添加一个新的文件server.cnf,并添加一个带有bind地址的组。

相关问题