0%

用到的linux

1. 最大打开文件数

当前系统打开的文件数:
cat /proc/sys/fs/file-nr

系统最大的文件数
cat /proc/sys/fs/file-max

单个进程最大的文件数,差不多是file-max的10%
cat /proc/sys/fs/nr_open

临时修改当前限制
ulimit -n 102400

系统修改:
cat /etc/security/limits.conf,*表示所有用户:

  • soft nofile 1048576
  • hard nofile 1048576

2. swap分区

  1. 查看 free -h
  2. 创建一个swap 1G的分区文件 dd if=/dev/zero of=/root/swapfile bs=1M count=1024
  3. 格式化: mkswap /root/swapfile
  4. 启用分区: swapon /root/swapfile
  5. 开机启动: 文件/etc/fstab 添加: /root/swapfile swap swap defaults 0 0