创建虚拟内存文件
dd if=/dev/zero of=/swapfile bs=1M count=1024 mkswap /swapfile swapon /swapfile
添加开机启动编辑 /etc/fstab 添加下面的代码
echo "/swapfile swap swap defaults 0 0" >> /etc/fstab
刷新内核编辑 /etc/sysctl.conf 添加下面的内容
vm.swappiness = 30
然后再执行sysctl -p
使之生效