網際網路基礎服務之NFS(儲存篇)

2021-10-21 23:46:05 字數 2860 閱讀 5038

安裝配置nfs

伺服器 web01

192.168.178.124

1.安裝nfs-utils和rpcbind

[root@web01 ~]# yum install -y nfs-utils rpcbind

2.環境配置

##nfs也是c/s模式,在server機器上建立用於nfs檔案共享的資料夾,且設定好許可權

[root@web01 ~]# mkdir /nfsshare

[root@web01 ~]# chmod -rf 777 /nfsshare/

3.開啟rpcbind和nfs-server服務

##要注意的是rpcbind服務即使停止, 111埠也不會掛掉,因為還有rpcbind.socket服務

[root@web01 ~]# systemctl restart rpcbind

[root@web01 ~]# systemctl restart nfs-server

4.配置nfs服務端的過程

4.1 確保rpc服務啟動了

[root@web01 ~]# systemctl restart rpcbind

4.2 建立需要共享的目錄,以及資料,並且授權

[root@web01 ~]# mkdir -p /nfs_data

[root@web01 ~]# touch /nfs_data/好嗨哦.txt

4.3 修改資料夾的屬主、屬組

[root@web01 ~]# chown -r nfsnobody.nfsnobody /nfs_data/

4.4 配置nfs服務端配置檔案,寫入如下掛載引數

[root@web01 ~]# vim /etc/exports /nfs_data *(insecure,rw,sync)

[root@web01 ~]# systemctl reload nfs

4.6 檢視nfs服務掛載情況

[root@web01 ~]# showmount -e

export list for web01: /nfs_data *

4.7 檢視nfs服務端掛載預設的引數,如下大多數引數都是預設的

[root@web01 ~]# cat /var/lib/nfs/etab

/nfs_data *(rw,sync,wdelay,hide,nocrossmnt,insecure,root_squash,no_all_squash,no_subtree_check,secure_locks,acl,no_pnfs,anonuid=65534,anongid=65534,sec=sys,rw,insecure,root_squash,no_all_squash)

8.把自己本地機器當做客戶端做乙個簡單掛載測試

[root@web01 ~]# mount -t nfs 192.168.178.124:/nfs_data/ /mnt

[root@web01 ~]# ls /mnt/

好嗨哦.txt

9.檢查掛載情況

[root@web01 ~]# df -h |tail -1

192.168.178.124:/nfs_data 20g 1.8g 18g 10% /mnt [root@web01 ~]# mount |tail -1

192.168.178.124:/nfs_data on /mnt type nfs4 (rw,relatime,vers=4.1,rsize=262144,wsize=262144,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=192.168.178.124,local_lock=none,addr=192.168.178.124)

配置nfs客戶端

##在另一台linux機器上連線nfs服務端

伺服器 web01

192.168.178.124

客戶端 web02

192.168.178.125

1.安裝nfs的命令套件

[root@web02 ~]# yum install nfs-utils rpcbind -y

2.確保rpcbind服務正常

[root@web02 ~]# systemctl status rpcbind

3.以nfs協議掛載

[root@web02 ~]# mount -t nfs 192.168.178.124:/nfs_data /mnt

4.進入掛載目錄,檢查遠端nfs服務端的資料夾資料

[root@web02 ~]# cd /mnt

[root@web02 mnt]# ls

好嗨哦.txt

5.開機自動掛載,將掛載命令寫入到/etc/fstab檔案

[root@web02 mnt]# tail -1 /etc/fstab

192.168.178.124:/nfs_data /mnt nfs defaults 0 0

網際網路思維基礎

網際網路的核心 a 資訊電子化,儲存,傳輸 b 改變資訊傳輸的效率 1 交流 2 娛樂 3 安全 4 大資料,雲計算 c 資訊交流,物與物的聯絡 d 物聯網 第一類1 流量獲取 流量變現的商業模式 2 使用者至上,體驗為王 3 網際網路鑽錢的三種方式 a 利用網際網路賣東西 b 廣告,使用者足夠多賣...

5 0網際網路基礎

5.0網際網路基礎 android端雙擊橫屏 效果更佳 網際網路主幹 最初為aprpnet,現在是ansnet 網際網路的組成 通訊線路 有線線路 和 無限線路 路由器 最重要的部分 伺服器和客戶機 伺服器就是網際網路服務和資訊資源的提供者 客戶機就是網際網路服務和資訊資源的 使用者 資訊資源 is...

網際網路的基礎

0.網際網路的組成 邊緣部分 所有連線在網際網路上的主機 主機指的是所有與網路直接相連的計算機 組成,使用者可以直接使用,用來進行主機之間的通訊和資源共享。核心部分 大量的網路與連線這些網路所使用的路由器構成,為邊緣部分提供服務。邊緣部分總結 邊緣部分主要使用核心部分所提供的服務,使得許多主機之間能...