Windows下进入mysql:D:/xampp/xampp/mysql/bin/mysql -u root -P3306 -p Enter
Linux下进入mysql: /XX/mysql/bin/mysql -uroot -p Enter
一些常用的查看命令:
show status;
show variables like ‘open_files_limit’;
show global status like ‘open_%’;
mysql 报错 can’t open file ‘xx.frm’(errno:24)
一般需要修改open files limit数量,在/etc/my.cnf加入open_files_limit = 8192 保存,重启mysql (前提是系统文件打开数也需要修改,可以通过ulimit -n查看)
open_files_limit的系统默认值为max_connections*5 或 max_connections + table_cache*2。
一般设置为大于等于max_connections + table_cache*2