CentOS6 NFS的安装配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6 NFS的安装配置相关的知识,希望对你有一定的参考价值。
centos 5 :
yum install nfs-utils portmap
centos 6 :
yum install nfs-utils rpcbind
本节是使用centos 6的配置过程:
设备:两台 centos6 OS 安装的时候选择的是"BasicServer"软件配置包。
首先,让两台机器都安装NFS的 软件包,如下显示的是服务器端:
[[email protected] /home]$ yuminstall nfs-utils rpcbind -y
服务器端:
NFS服务端需要先启动rpc,再启动NFS,这样NFS才能够到RPC去注册端口信息。客户端的RPC可以通过向服务端的RPC请求获取服务端的NFS端口信息。当获取到了NFS端口信息后,就会以实际端口进行数据的传输。
###(建立挂载的目录,并且挂载目录。)
[[email protected] /etc]$ mkdir/opt/centos6
[[email protected] /etc]$ cd /opt/centos6/
[[email protected] /opt/centos6]$ mkdir thisISnfsFile
[[email protected] /opt/centos6]$ ls
thisISnfsFile
[[email protected] /etc]$ vi /etc/exports
[[email protected] /opt/centos6]$ cat /etc/exports
/opt/centos6 192.168.1.0/24(rw,no_root_squash)
#### no_root_squash指客户端root用户不进行降权使用
### 备注:/opt/centos6表示nfs共享的目录 192.168.1.0-192.168.1.254区间的IP可以访问,访问权限是自读,root 用户
###(启动对应的服务)
[[email protected] /opt/centos6]$ chkconfig nfs on
[[email protected] /opt/centos6]$ /etc/init.d/rpcbind start
[[email protected] /opt/centos6]$ /etc/init.d/nfs start
[[email protected] /opt/centos6]$ service iptables stop
iptables: Flushing firewallrules: [ OK ]
iptables: Setting chains to policy ACCEPT:filter [ OK ]
iptables: Unloadingmodules: [ OK ]
客户端:
[[email protected] /home]$ yum install nfs-utils rpcbind -y
安装完毕!
[[email protected] ~]# service iptablesstop
###查看是否能访问nfs服务
[[email protected] ~]# showmount -e 192.168.1.75
Export list for 192.168.1.75:
/opt/centos6 192.168.1.0/24
[[email protected] ~]# mkdir /opt/centos6
[[email protected] ~]# mount -t nfs 192.168.1.75:/opt/centos6/ /opt/centos6/
[[email protected] ~]# ls /opt/centos6/
thisISnfsFile
###配置开机自动挂载
[[email protected] ~]# vi /etc/fstab
### 添加 #
192.168.1.75:/opt/centos6/ /opt/centos6/ nfsnodev,ro,rsize=32768,wsize=32768 0 0
············································
客户端查询
客户端要安装nfs-utils
showmount -e 192.168.1.250(服务端地址)
# 查询1.250服务器共享了哪些共享
mount –t nfs192.168.1.250:/xx /bb
# 将服务器上共享文件夹挂载到本机根目录的bb文件夹
本文出自 “十年一剑--劲风” 博客,请务必保留此出处http://jingfeng.blog.51cto.com/9152964/1880771
以上是关于CentOS6 NFS的安装配置的主要内容,如果未能解决你的问题,请参考以下文章