linux 挂载nfs 服务
1,确保两台机器都能ping通
2,确保被挂载的机器,开通111和2049的端口权限
可以用telnet ip 端口试试
3,mount命令
mount -t nfs 10.12.1.1:/picture /picture
4,增加开机启动脚本
cat /etc/fstab
10.12.1.1:/picture /picture nfs defaults 0 0
注意:
nfs需要以下端口
a] TCP/UDP 111 – RPC 4.0 portmapper
b] TCP/UDP 2049 – NFSD (nfs server)
本文来自博客园,作者:春江潮水连海平,转载请注明原文链接:https://www.cnblogs.com/alonewaiting/p/13947666.html