Linux下NFS伺服器的搭建與配置

來源:互聯網
上載者:User

標籤:port   lock   process   inux   roo   利用   建立   info   結果   

NFS服務簡介
NFS 就是 Network FileSystem 的縮寫,最早之前是由sun 這家公司所發展出來的。 它最大的功能就是可以透過網路,讓不同的機器、不同的作業系統、可以彼此分享個別的檔案
安裝NFS服務
查看系統是否已安裝NFS
[[email protected] ~]# rpm -qa | grep nfs
[[email protected] ~]# rpm -qa | grep rpcbind

安裝NFS
[[email protected] ~]# yum -y install nfs-utils rpcbind

服務端配置
在NFS服務端上建立共用目錄/data/lys並設定許可權
[[email protected] ~]# mkdir -p /data/lys
[[email protected] ~]# ll /data/
[[email protected] ~]# chmod 666 /data/lys/

編輯export檔案
[[email protected] ~]# vim /etc/exports

/data/lys 用戶端IP(rw,no_root_squash,no_all_squash,sync)

配置生效
[[email protected] lys]# exportfs -r
啟動rpcbind、nfs服務
[[email protected] lys]# service rpcbind start
[[email protected] lys]# service nfs start

查看 RPC 服務的註冊狀況
[[email protected] lys]# rpcinfo -p localhost

在你的 NFS 伺服器設定妥當之後,我們可以在 server 端先自我測試一下是否可以聯機喔!就是利用 showmount 這個指令來查閱
[[email protected] lys]# showmount -e localhost
用戶端配置
安裝nfs-utils用戶端
[[email protected] ~]# yum -y install nfs-utils

建立掛載目錄
[[email protected] ~]# mkdir /lys
查看伺服器拋出的共用目錄資訊
[[email protected] ~]# showmount -e 服務端ip
為了提高NFS的穩定性,使用TCP協議掛載,NFS預設用UDP協議
[[email protected] ~]# mount -t nfs 192.168.2.203:/data/lys /lys -o proto=tcp -o nolock

查看掛載結果
[[email protected] ~]# df -h

查看驗證結果
服務端
[[email protected] lys]# echo "test" > test.txt
用戶端
[[email protected] ~]# cat /lys/test.txt
test
[[email protected] ~]# echo "204" >> /lys/test.txt
服務端
[[email protected] lys]# cat /data/lys/test.txt
test
204

Linux下NFS伺服器的搭建與配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.