1
MySQL open_files_limit-无法更改此变量
我遇到了问题,因为我open_files_limit的mysql仅适用于1024。 Centos 7,MySQL Community Server 5.6.22-日志 实际上,这是WHM服务器专用于mysql的vps(远程mysql),但这不重要。 配置文件 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 ... …
17
mysql