自学内容网 自学内容网

服务器作业2

关闭防火墙
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0
配置文件
在这里插入图片描述
创建用户nfs-upload
[root@localhost ~]# useradd -u 210 nfs-upload
[root@localhost ~]# groupmod -g 210 nfs-upload
创建tom用户
[root@localhost ~]# useradd tom
查看tom用户id
[root@localhost ~]# id tom

重启nfs服务:
[root@localhost ~]# systemctl restart nfs-server
加载新的配置内容信息
[root@localhost ~]# exportfs -ra
客户端:
查看可挂载文件
[root@localhost ~]# showmount -e 192.168.61.128
挂载
[root@localhost t]# mount 192.168.61.128:/nfs/shared /s
[root@localhost t]# mount 192.168.61.128:/nfs/upload /n
[root@localhost ~]# mount 192.168.61.128:/home/tom /t

自动挂载:
[root@localhost ~]# vim /etc/fstab
在这里插入图片描述
重启系统


原文地址:https://blog.csdn.net/2201_75343695/article/details/143473493

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!