博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 6.3下NFS安装配置
阅读量:5789 次
发布时间:2019-06-18

本文共 2328 字,大约阅读时间需要 7 分钟。

CentOS 6.3下NFS安装配置
一、环境介绍
 
  NFS服务器:CentOS6.3 192.168.8.20
  NFS客户端:CentOS6.5 192.168.8.39
二、服务器端安装配置
 
1、先用rpm -qa命令查看所需安装包(nfs-utils、rpcbind)是否已经安装:
# rpm -qa | grep "rpcbind"
rpcbind-0.2.0-9.el6.x86_64
# rpm -qa | grep "nfs"
nfs-utils-lib-1.1.5-4.el6.x86_64
nfs-utils-1.2.3-26.el6.x86_64
2、如查询结果如上,说明服务器自身已经安装了NFS,如果没有安装,则用yum命令来安装:
# yum -y install nfs-utils rpcbind
3、创建共享目录:
# mkdir /sharestore
4、NFS共享文件路径配置:
编辑/etc/exports添加下面一行,添加后保存退出。
# vi /etc/exports 
/sharestore  *(rw,sync,no_root_squash)
5、启动NFS服务(先启动rpcbind,再启动nfs;如果服务器自身已经安装过NFS,那就用restart重启两个服务):
# service rpcbind restart停止 rpcbind:                                             [确定]正在启动 rpcbind:                                         [确定]# service nfs restart关闭 NFS 守护进程:                                        [确定]关闭 NFS mountd:                                          [确定]关闭 NFS 服务:                                            [确定]Shutting down RPC idmapd:                                  [确定]启动 NFS 服务:                                            [确定]启动 NFS mountd:                                          [确定]启动 NFS 守护进程:                                        [确定]正在启动 RPC idmapd:                                      [确定]
6、设置NFS服务开机自启动:
# chkconfig nfs on
# chkconfig --list nfs
nfs             0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
# chkconfig rpcbind on
# chkconfig --list rpcbind
rpcbind         0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
三、客户端挂载配置
1、创建一个挂载点:
# mkdir /mnt/store
2、查看NFS服务器上的共享:
# showmount -e 192.168.8.20
# showmount -e 192.168.8.20
-bash: showmount: command not found
安装nfs-utils包即可
# yum install -y nfs-utils
# showmount -e 192.168.8.20
Export list for 192.168.8.20:
/sharestore *
3、挂载:
# mount -t nfs 192.168.8.20:/sharestore /mnt/store
4、查看已挂载共享:
# mount/dev/sda3 on / type ext4 (rw)proc on /proc type proc (rw)sysfs on /sys type sysfs (rw)devpts on /dev/pts type devpts (rw,gid=5,mode=620)tmpfs on /dev/shm type tmpfs (rw)/dev/sda1 on /boot type ext4 (rw)none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)192.168.8.20:/sharestore on /mnt/store type nfs (rw,vers=4,addr=192.168.8.20,clientaddr=192.168.8.39)
5、验证挂载是否生效
# cd /mnt/store# touch aa[root@web1 store]# lsaa# echo "jack" > aa# cat aajack服务端192.168.8.20:# cd /sharestore/# lsaa# cat aajack

转载于:https://www.cnblogs.com/reblue520/p/6239818.html

你可能感兴趣的文章
springmvc+swagger2
查看>>
软件评测-信息安全-应用安全-资源控制-用户登录限制(上)
查看>>
我的友情链接
查看>>
Java Web Application 自架构 一 注解化配置
查看>>
如何 debug Proxy.pac文件
查看>>
Python 学习笔记 - 面向对象(特殊成员)
查看>>
Kubernetes 1.11 手动安装并启用ipvs
查看>>
Puppet 配置管理工具安装
查看>>
Bug多,也别乱来,别被Bug主导了开发
查看>>
sed 替换基础使用
查看>>
高性能的MySQL(5)创建高性能的索引一B-Tree索引
查看>>
oracle备份与恢复--rman
查看>>
图片变形的抗锯齿处理方法
查看>>
Effective C++ Item 32 确保你的 public 继承模子里出来 is-a 关联
查看>>
phpstorm安装laravel-ide-helper实现自动完成、代码提示和跟踪
查看>>
python udp编程实例
查看>>
TortoiseSVN中图标的含义
查看>>
Tasks and Back stack 详解
查看>>
关于EXPORT_SYMBOL的作用浅析
查看>>
成功的背后!(给所有IT人)
查看>>