1.查询最大文件打开数
ulimit -n(临时)#用户级别的限制
cat /etc/security/limits.conf(永久) #用户级别的限制
cat /proc/sys/fs/file-max #系统级别的限制
2.查询cpu核数
lscpu | grep "CPU(s):"
cat /proc/cpuinfo
nproc
3.删除7天以前的文件
find /path/to/files/ -type f -mtime +7 -exec rm {} \;
find /path/to/files/ -type f -mtime +7 | xargs -I {} rm {}
4.iptables禁止访问某个端口,允许某个ip访问
iptables -A INPUT -p tcp --dport 80 -j REJECT
iptables -I INPUT -s 192.168.1.100 -p tcp --dport 80 -j ACCEPT
这里,-A
是添加规则到链的末尾,-I
是插入规则到指定位置(如果未指定,则默认为首部)。-p
指定协议,--dport
指定目的端口,-j
指定目的,REJECT
拒绝访问,ACCEPT
允许访问。
请根据实际需要替换IP地址和端口号。