CentOS7NFS service installation and configuration
System environment: CentOS Linux release 7
1, Installation
Both nfs client and server install nfs utils package, and rpcbind is installed automatically. After installation, the nfsnobody user and group will be created. The uid and gid are 65534.
# yum -y install nfs-utils
2, Configure port
In addition to the fixed main program port 2049 a ...
Posted on Wed, 01 Dec 2021 08:55:26 -0500 by nodster
nfs server building and client mounting under CentOS 7 & Firewall opening with fixed port
1, Environmental preparation
192.168.56.101: Server 192.168.56.102: client
2, Set up NFS server
Set up nfs on server 192.168.56.101. The steps are as follows:
#Server node installation nfs (192.168.56.101)
yum -y install nfs-utils
#Create nfs shared data directory
mkdir -p /home/nfs/data/
#Modify permissions (optional)
chmod -R 777 ...
Posted on Sun, 28 Nov 2021 04:44:00 -0500 by gardan06