MySQL open_files_limit - ne peut pas changer cette variable

17

Je rencontre des problèmes car mon open_files_limitfor mysql ne l'est que 1024.

Centos 7, MySQL Community Server 5.6.22-log

C'est en fait un vps dédié à mysql pour un serveur WHM (mysql distant), mais cela devrait être à côté du point.


Fichiers de configuration

my.cnf:

[mysqld]
open_files_limit = 100000
open-files-limit = 100000 #I've read that the dashes are required on older versions, but I threw it in anyway.
innodb_buffer_pool_size = 600M
...

# and the same for mysqld_safe
[mysqld_safe]
open_files_limit = 100000
open-files-limit = 100000
...

/etc/security/limits.conf:

*       hard    nofile  100000
*       soft    nofile  100000

Sorties de commande

Mon os open_files_limit pour root:

[root@mack ~]# ulimit -Hn -Sn
open files                      (-n) 100000
open files                      (-n) 100000

Et puis en tant qu'utilisateur mysql:

[root@mack ~]# su mysql
bash-4.2$ ulimit -Hn -Sn
open files                      (-n) 100000
open files                      (-n) 100000

Statut MySQL:

[root@mack ~]# service mysql status
Redirecting to /bin/systemctl status  mysql.service
mysqld.service - MySQL Community Server
   Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled)
   Active: active (running) since Wed 2014-12-24 10:41:09 EST; 40min ago
  Process: 2982 ExecStartPost=/usr/bin/mysql-systemd-start post (code=exited, status=0/SUCCESS)
  Process: 2970 ExecStartPre=/usr/bin/mysql-systemd-start pre (code=exited, status=0/SUCCESS)
 Main PID: 2981 (mysqld_safe)
   CGroup: /system.slice/mysqld.service
           ââ2981 /bin/sh /usr/bin/mysqld_safe
           ââ3268 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-error=/var/log/mysqld.log --open-files-limit=100000 --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/my...

Dec 24 10:41:08 mack systemd[1]: Starting MySQL Community Server...
Dec 24 10:41:09 mack mysqld_safe[2981]: 141224 10:41:09 mysqld_safe Logging to '/var/log/mysqld.log'.
Dec 24 10:41:09 mack mysqld_safe[2981]: 141224 10:41:09 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
Dec 24 10:41:09 mack systemd[1]: Started MySQL Community Server.

J'ai redémarré mysql, arrêté, vérifié l'état pour m'assurer qu'il s'est arrêté, puis l'ai démarré et redémarré tout le système.

Des preuves qui my.cnffonctionnent:

mysql> show global variables like '%buffer_pool_size%';
+-------------------------+-----------+
| Variable_name           | Value     |
+-------------------------+-----------+
| innodb_buffer_pool_size | 629145600 |
+-------------------------+-----------+
1 row in set (0.00 sec)

Voici maintenant où ma tension artérielle augmente:

mysql> show global variables like 'open%';
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| open_files_limit | 1024  |
+------------------+-------+
1 row in set (0.00 sec)

Qu'est-ce que je rate? Y a-t-il un autre my.cnf qui écrase ma valeur?

[root@mack ~]# find / -name "*.cnf"
/usr/share/mysql/my-default.cnf
/usr/share/doc/mysql-community-server-5.6.22/my-default.cnf
/var/lib/mysql/auto.cnf
/etc/my.cnf
/etc/pki/tls/openssl.cnf

J'ai examiné tous ces éléments et il n'y a aucune mention de open_files_limit. Pour le diable, je voudrais à greptravers ceux-ci à la recherche du cadre:

[root@mack ~]# grep -r "open_files_limit" /etc
/etc/my.cnf:open_files_limit = 100000
/etc/my.cnf:open_files_limit = 100000
[root@mack ~]# grep -r "open_files_limit" /var
[root@mack ~]# grep -r "open_files_limit" /usr
/usr/share/vim/vim74/syntax/ora.vim:syn keyword oraKeywordUnd     _number_cached_attributes _offline_rollback_segments _open_files_limit
Binary file /usr/sbin/mysqld matches
Binary file /usr/sbin/mysqld-debug matches
Binary file /usr/bin/mysqlbinlog matches
/usr/bin/mysqld_safe:      --open_files_limit=*) open_files="$val" ;;

Mais non, ils ne l'affectent pas.

user24601
la source
1
Voici une friandise à partir du journal de MySQL lors du redémarrage: 2014-12-24 10:41:09 3268 [Warning] Buffered warning: Could not increase number of max_open_files to more than 1024 (request: 100000). Cela doit signifier que MySQL ESSAYE d'augmenter sa limite.
user24601

Réponses:

18

J'avais besoin de modifier /usr/lib/systemd/system/mysqld.serviceet d'ajouter

LimitNOFILE=infinity
LimitMEMLOCK=infinity

Ensuite, exécutez systemctl daemon-reloadet systemctl restart mysql.service.

Maintenant, la variable est plafonnée 65536pour une raison inconnue, mais je peux vivre avec ça pour l'instant.

Trouvé sur /unix/152186/mysql-max-open-files-more-than-1024#answer-157910

user24601
la source
4
Le fichier / usr / lib / contient un avertissement de ne pas le modifier. Pour MariaDB sur Centos7, j'ai créé un fichier /etc/systemd/system/mariadb.service.d/limits.confavec le contenu suivant [Service] LimitNOFILE=infinity LimitMEMLOCK=infinity
Chris Wheeler