2021-03-07 分類(lèi): 網(wǎng)站建設(shè)
干活0.0
NFS
1、服務(wù)端安裝NFS
[root@localhost ~]#yum install nfs-utils -y
2、創(chuàng)建共享文件夾,并給文件夾高權(quán)限簡(jiǎn)單粗暴。
[root@localhost ~]#mkdir /nfs [root@localhost ~]#chmod 777 /nfs
3、修改nfs配置文件/etc/exports
[root@localhost ~]#vi /etc/exports添加 /nfs *(rw)
其中/nfs表示共享目錄
*表示任意IP地址訪問(wèn)
rw只可讀寫(xiě)
4、啟動(dòng)守護(hù)進(jìn)程和nfs服務(wù)并開(kāi)機(jī)自啟動(dòng)
[root@localhost ~]#systemctl restart rpcbind.service [root@localhost ~]#systemctl restart nfs.service [root@localhost ~]#chkconfig nfs on
5、檢測(cè)文件輸出目錄
[root@localhost ~]#exportfs -v/nfs
6、部署客戶(hù)端nfs服務(wù)
[root@localhost ~]# yum install nfs-utils -y
7、測(cè)試輸出目錄的狀態(tài)
[root@localhost ~]# showmount -e "服務(wù)端IP"Export list for 192.168.X.X: /nfs *(rw)
8、創(chuàng)建掛載文件夾
[root@localhost ~]# mkdir /nfs
9、配置自動(dòng)掛載
[root@localhost ~]# vi /etc/fstab 服務(wù)端IP:/nfs /nfs nfs defaults 0 0
10、最后用df -h 檢測(cè)掛載
[root@localhost ~]# df -h
如圖
11、服務(wù)端創(chuàng)建文件測(cè)試一下
root@localhost nfs]# echo "hello world">>123.txt
12、客戶(hù)端進(jìn)如共享目錄看一下
名稱(chēng)欄目:簡(jiǎn)單搭建一個(gè)NFS服務(wù)器
標(biāo)題來(lái)源:http://jinyejixie.com/news45/104745.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、企業(yè)網(wǎng)站制作、域名注冊(cè)、搜索引擎優(yōu)化、網(wǎng)站設(shè)計(jì)、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容