大家好,欢迎来到IT知识分享网。
NFS(网络文件系统):
no_root_squash:不将root用户或其所属组映射成匿名用户或组,这样设置很不安全,不建议使用
all_squash:将所有远程访问的普通用户或组都映像成匿名用户或组,适合公用目录
no_all_squash:不将所有远程访问的普通用户或组映像成匿名用户或组,这是默认值
Server设置/root/remotefs为共享目录让Client能同步到这个目录
Server(ip 172.25.1.128):
# yum install rpcbind nfs-utils
# systemctl enable {rpcbind,nfs-utils}
# systemctl start {rpcbind,nfs-utils}
# vim /etc/exports
/root/remotefs *(rw)
保存退出
[root@localhost ~]# firewall-cmd –add-service=rpc-bind
success
[root@localhost ~]# firewall-cmd –add-port=20048/tcp
success
[root@localhost ~]# firewall-cmd –add-service=nfs
success
[root@localhost ~]firewall-cmd runtime-to-permanent
Client:
# yum install nfs-utils
用showmount -e命令探测远程挂载
# showmount -e 172.25.1.128
以下是看到的内容
Export list for 172.25.1.128:/root/remotefs *
我们可以从列表中选择一个去挂载到本地的某个目录
# mkdir /remote
# mount -t nfs 172.25.1.128:/root/remotefs /remote
一般做为开机挂载使用
# vim /etc/fstab
172.25.1.128:/root/remotefs /remote nfs defaults 0 0
保存退出
# mount -a
再敲mount -a检查是否挂载成
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/50269.html