摘要:
阅读全文
摘要:
启动rpcbind 和NFS服务程序命令service rpcbind start service nfs start
查看防火墙状态:systemctl status firewalld.service
关闭防火墙:systemctl stop firewalld.service
关闭防火墙的查看状态:systemctl status firewalld.service
禁止开启防火墙服务器:systemctl disable firewalld.service 阅读全文
摘要:
mount挂载性能优化参数
1)禁止更新目录及文件时间戳挂载,命令如下:
mount -t nfs -o noatime,nodiratime x.x.x.x:/data /mnt
2)安全加优化的挂载方式如下:
mount -t nfs -o nosuid,noexec,nodev,noatime,nodiratime,intr,rsize=131072,wsize=131072 x.x.x.x:/data /mnt
3)默认的挂载方式如下:
mount -t nfs x.x.x.x:/data /mnt 阅读全文