码迷,mamicode.com
首页 > 其他好文 > 详细

xtrabackup备份失败(error writing file 'UNOPENED')

时间:2019-11-14 12:35:18      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:inf   copy   有用   参数   nbsp   har   解决   做了   tac   

xtrabackup备份失败

  技术图片

 

 

  解决了,是因为limit open files值设置太小了

(3)修改资源限制参数

技术图片
vi /etc/security/limits.conf

    nproc:用户创建进程数限制  建议65535

    nofile:进程打开文件次数限制 建议65535

    stack:存放变量的指针 建议65535

    软硬限制(soft/hard,软限制到了阈值会警告,硬限制则就是不能再继续做了),*代表所有用户
    
* soft nproc 65535 * hard nproc 65535 * soft nofile 65535 * hard nofile 65535 * soft stack 65535 * hard stack 65535
  技术图片

 

--可以通过以下代码去检验
ulimit -a
  
技术图片
 
#进程数限制,默认有限制,默认清空

echo "* - nproc 65535" > /etc/security/limits.d/90-nproc.conf

 

 

 

 

xtrabackup备份失败(error writing file 'UNOPENED')

标签:inf   copy   有用   参数   nbsp   har   解决   做了   tac   

原文地址:https://www.cnblogs.com/gered/p/11856209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!