服务器运维
- 列表项目
文件数量限制
修改文件
vim /etc/security/limits.conf
添加如下内容到此文件的最后:
* soft nofile 65535
* hard nofile 65535
* soft nproc 65535
* hard nproc 65535
查看是否修改成功
// 重启服务器之后,使用命令
ulimit -n
查找大文件
find . -type f -size +800M
批量上传当前目录下空文件
find . -name "*" -type f -size 0c | xargs -n 1 rm -f