1.裝置配置
nfs伺服器端ip:192.168.19.250
客戶端:192.168.19.222
2.第一步關閉selinux和防火牆
2.1關閉防火牆
臨時關閉:systemctl stop firewalld
永久關閉:systemctl disable firewalld
2.2關閉selinux
臨時關閉:setenforce 0
永久關閉需要修改配置檔案vi /etc/selinux/config
3.開始部署服務端 安裝rpcbind.x86_64nfs-utils.x86_64
3.1 yum -y installrpcbind.x86_64nfs-utils.x86_64
3.2 檢視nfs是否安裝 yum list | grep nfs 最後面有個@的符號說明已經安裝
3.3修改檔案 vi /etc/exports 新增一下內容
3.4重啟nfs和rpcbind並開機自啟動(注意這裡先啟動rpcbind在啟動nfs)
重啟: systemctl restart rpcbind
systemctl restart nfs
開機自啟:systemctl enable nfs
systemctl enable rpcbind
注:啟動順序不對可能出現以下情況
4.配置客戶端安裝rpcbind.x86_64nfs-utils.x86_64
4.1 yum -y installrpcbind.x86_64nfs-utils.x86_64
4.2檢視網路檔案
showmount -e 192.168.19.250
4.3建立掛載點並掛載
建立掛載點:mkdir /tmp/nfs
臨時掛載:mount -t nfs 192.168.19.250:/home/nfs /tmp/nfs
開機自動掛載:編輯檔案 /etc/fstab
vi /etc/fstab
新增 192.168.19.250:/home/nfs /tmp/nfs nfs defaults 0 1
5.檢視是否掛載: df -h
Linux系統運維之nfs介紹
全稱為 nework file system 網路檔案系統 通過網路儲存和組織檔案的一種方法或者機制 工作原理 1 硬體 用sas ssd硬碟,買多塊,硬體raid,製作raid5或者raid10,網絡卡的吞吐量要大,至少千兆以上 可多塊網絡卡 2 優化nfs伺服器端的配置 3 優化nfs客戶端掛載...
運維Linux 禪道部署
接觸運維乙個月,每次開啟都會讓我又愛又恨,這次是部署禪道,也是困了我好幾天才完成的。su rootip addrgetconf long bityum install wget注意 如果顯示already,則代表已經安裝成功!如下圖 sudo tar zxvf zentaopms.11.3.stab...
MySQL運維 (部署)
資料庫的由來 資料庫能做什麼?有網路的安裝的安裝方法 訪問國內mysql映象站 安裝相關軟體 root localhost yum install y net tools.x86 64 libaio.x86 64 perl.x86 64安裝mysql伺服器 root localhost yum in...