mysql報錯Changed limits: max_open_files: 5000

甲骨文技術支援發表於2018-04-08
OS:CentOS 7.4
DB:mysql 5.7.17
error.log日誌裡報錯資訊:

  1. 2018-04-08T09:52:52.641263Z 0 [Warning] Changed limits: max_open_files: 5000 (requested 50000)
  2. 2018-04-08T09:52:52.641467Z 0 [Warning] Changed limits: max_connections: 4190 (requested 10000)
  3. 2018-04-08T09:52:52.641476Z 0 [Warning] Changed limits: table_open_cache: 400 (requested 2000)
看到這個錯誤第一反應是去資料庫查查當前的引數都是多少,和日誌裡提示的是一樣的

  1. mysql> show variables like '%files%';
  2. +---------------------------+--------+
  3. | Variable_name | Value |
  4. +---------------------------+--------+
  5. | character_set_filesystem | binary |
  6. | innodb_log_files_in_group | 2 |
  7. | innodb_open_files | 400 |
  8. | keep_files_on_create | OFF |
  9. | large_files_support | ON |
  10. | open_files_limit | 5000 |
  11. +---------------------------+--------+
  12. 6 rows in set (0.00 sec)

  13. mysql> show variables like '%connections%';
  14. +----------------------+-------+
  15. | Variable_name | Value |
  16. +----------------------+-------+
  17. | max_connections | 4190 |
  18. | max_user_connections | 0 |
  19. +----------------------+-------+
  20. 2 rows in set (0.00 sec)


  21. mysql> show variables like '%table_open_cache%';
  22. +----------------------------+-------+
  23. | Variable_name | Value |
  24. +----------------------------+-------+
  25. | table_open_cache | 400 |
  26. | table_open_cache_instances | 16 |
  27. +----------------------------+-------+
  28. 2 rows in set (0.01 sec)

看到是max_open_files,難道是作業系統限制了?也沒有啊

  1. [root@iz2ze6jo3o3bqbcongnypoz mysql]# ulimit -n
  2. 65535
my.cnf檔案裡也沒有對這些引數做修改,因為是用mysqld.service啟動的,難道是這個檔案的問題嗎?

  1. [root@iz2ze6jo3o3bqbcongnypoz system]# more /usr/lib/systemd/system/mysqld.service
  2. # Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; version 2 of the License.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. #
  17. # systemd service file for MySQL forking server
  18. #

  19. [Unit]
  20. Description=MySQL Server
  21. Documentation=man:mysqld(8)
  22. Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html
  23. After=network.target
  24. After=syslog.target

  25. [Install]
  26. WantedBy=multi-user.target

  27. [Service]
  28. User=mysql
  29. Group=mysql

  30. Type=forking

  31. PIDFile=/var/run/mysqld/mysqld.pid

  32. # Disable service start and stop timeout logic of systemd for mysqld service.
  33. TimeoutSec=0

  34. # Execute pre and post scripts as root
  35. PermissionsStartOnly=true

  36. # Needed to create system tables
  37. ExecStartPre=/usr/bin/mysqld_pre_systemd

  38. # Start main service
  39. ExecStart=/usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid $MYSQLD_OPTS

  40. # Use this to switch malloc implementation
  41. EnvironmentFile=-/etc/sysconfig/mysql

  42. # Sets open_files_limit
  43. LimitNOFILE = 5000

果然是...把這個引數修改為65535後,重啟mysql,問題消失了。


  1. LimitNOFILE = 5000 這個值預設就是5000,下面這篇文件說清楚這個事了:

https://dev.mysql.com/doc/refman/5.7/en/using-systemd.html



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2152685/,如需轉載,請註明出處,否則將追究法律責任。

相關文章