生产场景NFS共享存储优化

通过一下几个方面来优化

1.硬件:用sas或者ssd磁盘,做硬RAID,网卡和带宽都有制约。

2.服务器端:配置/etc/exports文件

                            /data/shared 192.168.1.0/24(rw,async,all_squash,anonuid=666,anongid=666)

      async效率高,但是可能会出现数据丢失的情况。

3.客户端:挂载的时候rsize=,wsize=,noatime,nodirtime,nosuid,noexec,soft(hard,intr),添加相应的参数

4.内核的优化,执行

cat >> /etc/sysctl.conf << EOF
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
EOF

sysctl -p #生效



标签:

上一篇fail2ban配置postfix(电脑装机配置单)
下一篇Linux下7种运行模式总结(linux运行.sh)

相关文章