1、關閉防火牆(4步)
root@zhangwu ~]# systemctl stop firewalld
[root@zhangwu ~]# systemctl disable firewalld
[root@zhangwu ~]# vim /etc/selinux/config
[root@zhangwu ~]# setenforce 0
2、安裝nfs服務(nfs-utils rpcbind)
[root@zhangwu ~]# yum -y install nfs-utils
[root@zhangwu ~]# yum -y install rpcbind
已載入外掛程式:product-id, search-disabled-repos, subscription-manager
this system is
3、啟動nfs服務 和 rpcbind
[root@zhangwu ~]# systemctl start nfs-server
[root@zhangwu ~]# systemctl start rpcbind
4、編輯配置檔案的共享目錄
5、重啟nfs服務
[root@zhangwu ~]# systemctl restart nfs-server rpcbind
6、建立共享目錄
[root@zhangwu ~]# mkdir /chenqian
客戶端:
1、關閉防火牆(4步
[root@add ~]# systemctl stop firewalld
[root@add ~]# systemctl disable firewalld
removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
removed symlink /etc/systemd/system/dbus-org.fedoraproject.firewalld1.service.
[root@add ~]# systemctl disable firewalld
[root@add ~]# vim /etc/selinux/
config final/ semanage.conf targeted/ tmp/
[root@add ~]# vim /etc/selinux/
config final/ semanage.conf targeted/ tmp/
[root@add ~]# vim /etc/selinux/
config final/ semanage.conf targeted/ tmp/
[root@add ~]# vim /etc/selinux/config
2、搭建nfs服務
[root@add ~]# yum -y install nfs-utils rpcbind
已載入外掛程式:product-id, search-disabled-repos, subscription-manager
3、啟動nfs服務
[root@add ~]# systemctl start nfs-server rpcbind
4、驗證nfs服務端的共享目錄
[root@add ~]# showmount -e 192.168.50.137
export list for 192.168.50.137:
/add 192.168.50.138
5、建立掛載的目錄站點
[root@add ~]# mkdir /nfs
6、掛載
[root@add ~]# mount -t nfs 192.168.50.137:/add /nfs
7、然後在服務端為共享目錄設定匿名使用者和組
[root@zhangwu ~]# chown -r nfsnobody.nfsnobody /add
8、在客戶端驗證掛載目錄站點是否可以建立檔案和刪除檔案
[root@add nfs]# touch 7 8
touch: 無法建立"7": 唯讀檔案系統
touch: 無法建立"8": 唯讀檔案系統
[root@add nfs]# touch 7 8
[root@add nfs]# ls
1 2 3 7 8
NFS服務配置與管理
伺服器端 1 配置網路,這裡用僅主機模式的網路。使伺服器與客戶端能夠互相通訊。2 配置本地yum源 name baseurl file gpgcheck 0 3 yum list檢驗yum源是否配置成功。yum install nfs server y 安裝nfs。4 重啟服務 systemctl ...
Liunx服務管理之NFS
2.nfs工作機制 3.exports檔案的格式 4.nfs管理 nfs有很多實際應用場景,以下是一些常用的場景 nfs體系至少有兩個主要部分 客戶機通過tcp ip網路遠端訪問存放在nfs伺服器上的資料 在nfs伺服器正式啟用前,需要根據實際環境和需求,配置一些nfs引數 nfs是基於rpc來實現...
RedHat7 NFS服務管理
1.檢視nfs服務狀態 systemctl status nfs server.service 2.預設情況下nfs服務是disable的,enable之後保證每次啟動都自動載入nfs systemctl enable nfs service.service 3.修改 etc export,例如將本...