码迷,mamicode.com
首页 > 其他好文 > 详细

NFS安装部署

时间:2015-12-04 21:10:48      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:挂载   nfs   mount   

由于目前是使用了两台web服务器,正常来说:每个web上面都需要一个项目的文件
在此,考虑到更新方便,我将项目的目录设置为NFS共享方式
 
192.168.1.41挂载使用:
mount -t nfs 10.100.16.40:/usr/share/nginx/html//usr/share/nginx/html/
 
#服务端安装nfs
yum -y install nfs-unitls rpcbind
 
#编辑/etc/exports配置文件
[root@localhost conf]# cat /etc/exports 
/usr/share/nginx/html      192.168.1.*(rw,sync,no_root_squash)
 
#启动nfs
service rpcbind start
service nfs start
chkconfig rpcbind on
chkconfig nfs on
 
客户端:
[root@localhost html]# showmount -e 192.168.1.40
Export list for 192.168.1.40:
/usr/share/nginx/html 192.168.1.*
 
#挂载
mount –t nfs 192.168.1.40:/usr/share/nginx/html//usr/share/nginx/html/
 
#验证是否挂载
[root@localhost html]# df -h
Filesystem           Size  Used Avail Use% Mounted on
/dev/sda3            280G  6.9G  258G  3% /
tmpfs                3.9G     0  3.9G  0% /dev/shm
/dev/sda1            504M   36M  443M  8% /boot
192.168.1.41:/usr/share/nginx/html/
                      280G  6.3G 259G   3% /usr/share/nginx/html



#客户端不能挂载
[root@bbs ~]# mount -t nfs 192.168.1.41:/usr/share/nginx/html//usr/share/nginx/html/
mount.nfs: Stale NFS file handle
#出现这个情况一般是,服务器端的nfs服务挂了导致的
 
#解决方法:在客户端卸载umount -lf /usr/share/nginx/html
再重新挂载就好!


本文出自 “9527” 博客,请务必保留此出处http://liangey.blog.51cto.com/9097868/1719553

NFS安装部署

标签:挂载   nfs   mount   

原文地址:http://liangey.blog.51cto.com/9097868/1719553

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!