MySQL open_files_limit - इस चर को बदल नहीं सकता है


17

मैं मुद्दों में भाग रहा हूं क्योंकि मेरे open_files_limitलिए mysql ही है 1024

Centos 7, MySQL सामुदायिक सर्वर 5.6.22-लॉग

यह वास्तव में एक WHM सर्वर (रिमोट mysql) के लिए mysql को समर्पित vps है, लेकिन यह बिंदु के पास होना चाहिए।


फ़ाइलों को कॉन्फ़िगर करें

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

कमांड आउटपुट

रूट के लिए मेरा os open_files_limit:

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

और फिर mysql उपयोगकर्ता के रूप में:

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

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.

मैंने mysql को पुनः आरंभ किया, बंद किया, यह सुनिश्चित करने के लिए स्थिति की जाँच की कि यह बंद हो गया है, फिर इसे शुरू किया, और पूरे सिस्टम को रिबूट किया।

साक्ष्य जो my.cnfकाम करता है:

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

अब यहाँ मेरा ब्लड प्रेशर बढ़ गया है:

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

मुझे किसकी याद आ रही है? क्या कोई अन्य my.cnf है जो मेरे मूल्य को अधिलेखित कर रहा है?

[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

मैंने उन सभी पर ध्यान दिया और इसमें open_files_limit का कोई उल्लेख नहीं है। इसकी हेक के लिए, मैं grepसेटिंग की तलाश में इन के माध्यम से:

[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" ;;

लेकिन नहीं, वे इसे प्रभावित नहीं करते।


1
यहाँ पुनरारंभ के दौरान mysql लॉग से एक tidbit है 2014-12-24 10:41:09 3268 [Warning] Buffered warning: Could not increase number of max_open_files to more than 1024 (request: 100000):। इसका मतलब यह होना चाहिए कि MySQL अपनी सीमा बढ़ाने की कोशिश कर रहा है।
user24601

जवाबों:


18

मुझे संपादित करने /usr/lib/systemd/system/mysqld.serviceऔर जोड़ने की आवश्यकता थी

LimitNOFILE=infinity
LimitMEMLOCK=infinity

फिर दौड़ो systemctl daemon-reloadऔर systemctl restart mysql.service

अब चर 65536किसी अज्ञात कारण से छाया हुआ है , लेकिन मैं अब उसी के साथ रह सकता हूं।

Https://unix.stackexchange.com/questions/152186/mysql-max-open-files-more-than-1024#answer-157910 पर यह पाया गया


4
/ Usr / lib / फ़ाइल में इसे संपादित न करने की चेतावनी है। Centos7 पर MariaDB के लिए मैंने /etc/systemd/system/mariadb.service.d/limits.confनिम्न सामग्री के साथ एक फ़ाइल बनाई[Service] LimitNOFILE=infinity LimitMEMLOCK=infinity
क्रिस व्हीलर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.