Centos6 4NFS的安裝與配置

2021-12-29 21:56:42 字數 1713 閱讀 5721

[root@localhost etc]# rpm -qa | grep nfs

nfs-utils-lib-1.1.5-6.el6.i686

nfs4-acl-tools-0.3.3-6.el6.i686

nfs-utils-1.2.3-36.el6.i686

[root@localhost etc]# rpm -qa | grep rpcbind

rpcbind-0.2.0-11.el6.i686

[root@localhost etc]#

以上兩個軟體如果沒有安裝,可以用yum,**安裝。

主要配置檔案:/etc/exports

[root@localhost /]# vi /etc/exports

/tmp 192.168.0.0/24(rw) //把「/tmp」共享給192.168.0.0網段(可讀)。

/tmp 192.168.0.65(rw,sync,no_root_squash) //把「/tmp」共享給192.168.0.65(可讀可寫,同步)。

[root@localhost etc]# service portmap restart

停止 portmap:[ 確定 ]

啟動 portmap:[ 確定 ]

[root@localhost etc]# service nfs restart //設定完成後重啟服務

關閉 nfs mountd:[ 確定 ]

關閉 nfs 守護程序:[ 確定 ]

關閉 nfs quotas:[ 確定 ]

關閉 nfs 服務: [失敗]

啟動 nfs 服務: [ 確定 ]

關掉 nfs 配額:[ 確定 ]

啟動 nfs 守護程序:[ 確定 ]

啟動 nfs mountd:[ 確定 ]

[root@localhost etc]# showmount -e //檢視自己共享的服務

export list for localhost.localdomain:

/tmp 192.168.0.0/24,localhost

[root@localhost tmp]# showmount -a //顯示已經與客戶端連線上的目錄資訊

all mount points on localhost.localdomain:

192.168.0.213:/tmp

******************************==

# showmount -e 192.168.0.248 //列出可供使用的nfs

export list for 192.168.0.248:

/tmp 192.168.0.65,192.168.0.213

# mount 192.168.0.248:/tmp /mnt //掛載「/tmp」目錄到「/mnt」下。

# mount 192.168.0.70:/tmp /mnt/tmp

mount:1831-008 放棄:

192.168.0.70:/tmp

vmount: 操作不允許執行。

# nfso -p -o nfs_use_reserved_ports=1

正在將 nfs_use_reserved_ports 設定為 1

正在 nextboot 檔案中將 nfs_use_reserved_ports 設定為 1

# mount 192.168.0.70:/tmp /mnt/tmp

# ls /mnt/tmp

Centos6 4系統檔案服務之NFS

1.檢視nfs軟體是否安裝和啟動服務 root localhost rpm aq egrep nfs rpcbind rpcbind 0.2.0 11.el6.i686 nfs utils 1.2.3 36.el6.i686 nfs utils lib 1.1.5 6.el6.i686 root l...

nfs的安裝與配置

nfs 網路檔案系統 需要兩個服務nfs utils和rpcbind 1 安裝nfs utils和rpcbind 服務於客戶端都安裝 檢查是否已安裝 rpm qa nfs utils rpcbind kafka dev l002595 nfstest rpm qa nfs utils rpcbind...

centos7安裝NFS服務

nfs是網路檔案系統 network file system 它允許系統將本地目錄和檔案共享給網路上的其他系統。通過 nfs,使用者和應用程式可以訪問遠端系統上的檔案,就象它們是本地檔案一樣。nfs需要nfs utils和rpcbind兩個包,但安裝nfs utils時會一起安裝上rpcbind y...