NFS (Network File System)
Network File System allows a system to share directories and files with others over a network. By using NFS, users and programs can access files on remote systems almost as if they were local files.
Two Types Of NFS
2. block level sharing
Benefits of using NFS
pakage=nfs-utils, nfs-server
service=nfs-server
port= 2049/TCP
launch two Machine 1. server M/c 2 Client M/C
server m/c---- # yum install nfs-utills -y
# systemctl enable --now nfs-server
领英推荐
# systemctl status nfs-server
# netstat -tulpn
# mkdir /developer
# vim /etc/exports
^ /devloper client m/c ip(rw,no_root_squash)
# systemctl restart nfs-server
# exportfs -v
# firewall-cmd --add-port=2049/tcp --permanent
# firewall-cmd --reload
# firewall-cmd --list-port
client M/c
# mkdir /water
tempory mount : # mount -t nfs nfs-server m/c ip:/servermachine dir /client dir
permaent mounr: # vim /etc/fstab
and then cross check our nfs server directory mount or no
?? Technology Enthusiast | GIS Expert | Cybersecurity Specialist | EMEA Region ?? Skilled in Vulnerability Assessment | Threat & Risk Analysis | Email & Incident Response | Technical Support | Understanding of Networking
1 年Thanks for the information