挂载目录操作步骤
service iptables stop
1.共享服务器设置共享目录
/etc/exports
/opt/user_pics/ *(rw,no_root_squash,async)
2.开启共享服务
service portmap restart;
service nfs restart;
chkconfig portmap on
chkconfig nfs on
3.目标服务器执行
mount -t nfs 10.66.216.204:/opt/beian/ /opt/beian/
service iptables stop