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

CentOS NFS随笔

时间:2015-02-03 14:47:05      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

NFS的安装配置:
centos 5 :
yum install nfs-utils portmap
centos 6 :
yum install nfs-utils rpcbind

chkconfig --level 35 nfs on
chkconfig --level 35 portmap/rpcbind on

服务器端:
建立挂载目录
mkdir /opt/nfs
chown -R nfsnobody:nfsnobody /opt/nfs

vi /etc/exports
添加行:
/opt/nfs 192.168.10.0/24(rw,sync,root_squash)

service nfs start
service portmap/rpcbind start

 

客户端:
建立挂载目录
mkdir /opt/dirname
chmod 777 /opt/dirname

service nfs start
service portmap/rpcbind start

mount -t nfs 192.168.x.x:/opt/nfs /opt/dirname

自动挂载:
/etc/fstab
192.168.x.x:/opt/nfs /opt/dirname nfs defaults 0 0

CentOS NFS随笔

标签:

原文地址:http://www.cnblogs.com/tofupapa/p/4269809.html

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