centos6下配置nfs

centos6.2變動了portmap服務爲rpcbind,在使用nfs時這點與centos5不一樣,下面配置一個nfs系統,用來使局域網內的全部用戶都可訪問該目錄,可將該目錄配置成yum源,供內網機器安裝軟件。node

首先安裝NFS套件,命令以下:web

 

 

 

yum install nfs-utils.x86_6464位系統centos

yum install nfs-utils(32位系統)服務器

 

而後安裝portmap服務,portmapcentos6中更名爲rpcbindide

yum install rpcbind(centos6)工具

yum install portmap(centos5)spa

 

 

 

 

附:Centos5下NFS服務器的配置

類型:System V-launched Service
軟件包:nfs-utils
進程:nfsd,lockd,rpciod,rpc.{mounted,rquotad,statd}
腳本:nfs,nfslock
端口:由portmap服務指派端口(111) 
配置文件:/etc/exports 
輔助工具:portmap(必須)
相關命令:rpcinfo -p [IPADD]:查看服務器提供的rpc服務
          showmount -e:查看服務共享的目錄
Server端:
1./etc/exports格式:
            目錄                     選項             
例:共享/share目錄給192.168.0.x的用戶
           /share                192.168.0.0/24 (rw)  
2.啓動portmap服務:                                    
    service portmap start[restart]                     
3.啓動NFS服務:
    service nfs start[restart]                         
Client端
1.啓動portmap服務:                                    
    service portmap start[restart]                     
2.掛載服務器端的共享目錄(假設服務器端192.168.0.1):    
    mount -t nfs 192.168.0.1:/share  /mnt/localshare   
.net

 

 

客戶端配置rest

查看是否能訪問nfs服務orm

showmount -e 192.168.0.10

顯示以下:

 

Export list for 192.168.0.10:

/opt/centos6 192.168.0.11

 

表示能夠訪問,如不可訪問查看nfs服務端nfs服務是否啓用,防火牆是否容許經過。

 

掛載nfs目錄

mkdir /opt/centos6

mount -t nfs 192.168.0.10:/opt/centos6/ /opt/centos6/

 

 

配置開機自動掛載

vi /etc/fstab

添加

192.168.0.10:/opt/centos6 /opt/centos6 nfs  nodev,ro,rsize=32768,wsize=32768    0

 

配置nfs服務端

vi /etc/exports

添加

/opt/centos6 192.168.0.0/24(ro,no_root_squash)

這一行代表本機的/opt/centos6這個目錄爲nfs共享目錄,可訪問的ip地址區間爲192.168.0.0-192.168.0.254,權限爲只讀,當訪問者爲root用戶時方位該目錄具備root權限

 

重啓nfs服務

/etc/init.d/rpcbind start 

/etc/init.d/nfs start      

 

nfs加入開機啓動項

chkconfig nfs on

相關文章
相關標籤/搜索