mysql错误总结

问题: 在使用xtrabackup备份时报:InnoDB: Operating system error number 24 in a file operation.InnoDB: Error number 24 means 'Too many open files'.

解决方法:

echo "* soft nofile 65535"  >> /etc/security/limits.conf
echo "* hard nofile 65535"  >> /etc/security/limits.conf
#修改最大文件打开数,断开终端重新连接下就会生效了
也可以使用
ulimit -n 65535 临时生效

你可能感兴趣的:(mysql错误总结)