10年工作经验,专研网站运维。
全部博文(454)
分类: LINUX
2011-05-05 16:37:00
服务器配置:
service iptables stop
rpm -ivh nfs-utils
rpm -ivh portmap
/etc/init.d/nfs restart
/etc/init.d/portmap restart
vim /etc/exports
/storage 192.168.0.204/24(rw,async) *(ro)
别忘了给发布的目录4777权限:
chmod -R 4777 /storage
共享的路径 允许访问的ip集(访问权限)允许访问的另外ip(另外ip的权限)
保存退出。
exportfs -rv : 查看发布的文件。
chkconfig --level 35 nfs on
chkconfig --level 35 portmap on
客户端配置:
service portmap restart
showmount -e 192.168.0.203 : 查看服务器的发布路径
mount -a 192.168.0.203:/storage /www/cmstest/my120/storage/
挂载到本地。
开机自动挂载:
vim /etc/fstab
192.168.0.203:/storage /www/cmstest/my120/storage nfs defaults 0 0
chkconfig --level 35 portmap on