web-dev-qa-db-ja.com

MariaDBは/etc/my.cnfを無視しています

変更しようとしている変数はinnodb_buffer_pool_sizeです。以下を見るとわかるように、設定は512Mです。だが SELECT @@innodb_buffer_pool_size;は134217728を返します。

私が実行すると:/usr/libexec/mysqld --help --verbose

私の結果の構成は:

Default options are read from the following files in the given order: 
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
  1. /etc/mysql/my.cnf-存在しません
  2. /etc/my.cnf-以下に示します
  3. 〜/ .my.cnf-cd ~/ my.cnfファイルが存在しない/ rootに移動します。 mysqlはrootとして実行されますか?同じディレクトリに移動されますか?どうすればわかりますか?

ここにmy.cnfがあります

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
symbolic-links=0
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d

skip-networking

innodb_thread_concurrency = 6
innodb_flush_log_at_trx_commit = 2
thread_concurrency = 12 
table_cache = 1024
query_cache_size = 64M
query_cache_type=1
query_cache_limit = 4M
expire_logs_days=10
max_binlog_size=100M
join_buffer_size = 8M
tmp_table_size =256M  
max_allowed_packet = 2M
thread_stack = 192K
thread_cache_size = 32
thread_concurrency = 4
table_open_cache  = 4096
myisam-recover=BACKUP
max_connections        = 2500
max_heap_table_size = 256M
read_buffer_size = 2M
read_rnd_buffer_size = 16M
bulk_insert_buffer_size = 64M
myisam_sort_buffer_size = 128M
myisam_max_sort_file_size = 10G
myisam_max_extra_sort_file_size = 10G
myisam_repair_threads = 1
innodb_additional_mem_pool_size = 8M
innodb_log_buffer_size = 4M
innodb_log_file_size = 128M
innodb_log_files_in_group = 2
innodb_flush_log_at_trx_commit = 0
innodb_buffer_pool_size = 512M
innodb_data_home_dir = /var/lib/mysql/
innodb_data_file_path = ibdata1:256M:autoextend
innodb_autoextend_increment=512
slow_query_log = Off
slow_query_log_file = /var/www/html/log/mysql/slow-queries.log
long_query_time = 2
innodb_file_per_table = 1 

[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid


[mysqldump]
quick
quote-names
max_allowed_packet      = 16M

[isamchk]
key_buffer              = 32M
4
TylersSN

遅い答えですが、確認してください/etc/init.d/mysql

Mariadbはまだ(18.04)でinitスクリプトをインストールします

MYADMIN="/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf"

mysqladminは/etc/my.cnf/etc/mysql/my.cnfを読み取ると主張していますが、これは正しくありません。 --defaults-file=/etc/mysql/debian.cnf/etc/init.d/mysql部分を削除するだけです

1
user1993114

私も同じ問題を観察しています。my.cnfの言及されたパスとmy.cnfによって言及されたパスへのアクセス許可を確認することをお勧めします。

0
Bhupesh Pant