LINUX.ORG.RU

Не могу изменить настройки mariadb 10.5

 ,


0

1

На сервере с centos 7.9 была древняя mariadb 5.5.68 Вчера удалил её и установил новую mariadb 10.5.8 Вижу, что обычного файла с настройками my.cnf уже нет, а вместо него, насколько я понял настройки хранятся в папке /etc/my.cnf.d Открываю файл server.cnf и пытаюсь редактировать его:

#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#
# See the examples of server my.cnf files in /usr/share/mysql/
#

# this is read by the standalone daemon and embedded servers
[server]


# this is only for the mysqld standalone daemon
[mysqld]

max_connections=3985

#
# * Galera-related settings
#
[galera]
# Mandatory settings
#wsrep_on=ON
#wsrep_provider=
#wsrep_cluster_address=
#binlog_format=row
#default_storage_engine=InnoDB
#innodb_autoinc_lock_mode=2
#
# Allow server to accept connections on all interfaces.
#
#bind-address=0.0.0.0
#
# Optional setting
#wsrep_slave_threads=1
#innodb_flush_log_at_trx_commit=0

# this is only for embedded server
[embedded]

# This group is only read by MariaDB servers, not by MySQL.
# If you use the same .cnf file for MySQL and MariaDB,
# you can put MariaDB-only options here
[mariadb]

# This group is only read by MariaDB-10.5 servers.
# If you use the same .cnf file for MariaDB of different versions,
# use this group for options that older servers don't understand
[mariadb-10.5]

Я указал max_connections=3985 после чего пробовал перезагружать mariadb.service и даже делал reboot сервера. Ничего не помогает - после перезагрузки я вбиваю запрос

SHOW VARIABLES LIKE "max_connections"

но неизменно получаю:

Variable_name     Value
max_connections   151

Я пробовал указывать max_connections=3985 в разных секциях [mariadb] [mariadb-10.5] [server] и т.д. Но max_connections всё равно остаётся 151. Может я вообще не там пытаюсь указывать настройки? Или что-то делаю не так? Подскажите.

обычного файла с настройками my.cnf уже нет,

Как нет? Должен быть, но из одной строки ″!includedir /etc/my.cnf.d″.

mky ★★★★★
()

max_connections=3985

На кой чёрт столько, у тебя сервер с терабайтом памяти?

anonymous
()
Ответ на: комментарий от anonymous

На сервере 32GB, но ожидается, что БД будет использоваться активно. Смотрел в статус phpmyadmin - количество запросов доходило до 15 млн. в час.

manolls
() автор топика
Ответ на: комментарий от iljuase

iljuase, да, команда дала полезную информацию, в выводе указано

Default options are read from the following files in the given order: /etc/my.cnf ~/.my.cnf

Я создал файл /etc/my.cnf вручную с нужными настройками - после перезагрузки они успешно применились

Также после запуска команды mysqld --verbose --help | more - выводит ошибки:

2021-01-02 13:54:48 0 [ERROR] mysqld: Can’t lock aria control file ‘/var/lib/mysql/aria_log_control’ for exclusive use, error: 11. Will retry for 0 seconds

2021-01-02 13:54:48 0 [ERROR] Plugin ‘Aria’ init function returned error.

2021-01-02 13:54:48 0 [ERROR] Plugin ‘Aria’ registration as a STORAGE ENGINE failed.

2021-01-02 13:54:48 0 [Warning] Could not open mysql.plugin table: «Unknown storage engine ‘Aria’». Some options may be missing from the help text

О чём они могут говорить?

manolls
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.