配置NFS服务器
一.配置NFS服务器 |
1.安装软件包 |
[root@wjb10000 ~]# yum -y install nfs-utils.x86_64 |
2.修改配置文件 [root@wjb10000 ~]# vim /etc/idmapd.conf Domain = 192.168.1.50 //改为服务器主机名称 [root@wjb10000 ~]# vim /etc/exports /home 192.168.1.0/24(rw,sync,no_root_squash,no_all_squash) |
3.启动服务 |
systemctl start nfs-server systemctl enable nfs-server |
二.配置NFS客户端 |
1.安装软件包 |
[root@wjb10000 ~]# yum -y install nfs-utils.x86_64 |
2.修改配置文件 [root@wjb10000 ~]# vim /etc/idmapd.conf Domain = 192.168.1.50 //改为服务器主机名称 |
3.启动服务 |
systemctl start nfs-server systemctl enable nfs-server |
4.挂载目录 |
[root@wjb10000 ~]# mount -t nfs 192.168.1.50:/home /home
[root@wjb10000 ~]# df -hT
文件系统 类型 容量 已用 可用 已用% 挂载点
/dev/sda3 xfs 20G 57M 20G 1% /
devtmpfs devtmpfs 904M 0 904M 0% /dev
tmpfs tmpfs 913M 0 913M 0% /dev/shm
tmpfs tmpfs 913M 8.7M 904M 1% /run
tmpfs tmpfs 913M 0 913M 0% /sys/fs/cgroup
/dev/sda5 xfs 20G 1.5G 19G 8% /usr
/dev/sda2 xfs 30G 677M 29G 3% /var
192.168.1.50:/home nfs4 28G 33M 28G 1% /home
/dev/sda1 xfs 497M 129M 369M 26% /boot
tmpfs tmpfs 183M 0 183M 0% /run/user/0
|
5.开机自动挂载 |
[root@wjb10000 ~]# vim /etc/fstab 192.168.1.50:/home /home nfs defaults 0 0 |