nfs服务器

1.开放/nfs/shared目录,供所有用户查阅资料

  • 在服务端和客户端安装nfs-utils
cs 复制代码
[root@sever ~]# yum -y install nfs-utils
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Resolving Dependencies
--> Running transaction check
---> Package nfs-utils.x86_64 1:1.3.0-0.el7 will be installed
--> Processing Dependency: libtirpc >= 0.2.3-1 for package: 1:nfs-utils-1.3.0-0.el7.x86_64
--> Processing Dependency: keyutils for package: 1:nfs-utils-1.3.0-0.el7.x86_64
  • 启动
cs 复制代码
[root@sever ~]# systemctl restart rpcbind nfs-server

[root@client ~]# systemctl restart rpcbind nfs-server
  • 在服务器上创建/nfs/shared目录(供所有用户查阅资料)
cs 复制代码
[root@sever ~]# mkdir -p /nfs/shared
  • 修改/etc/exports文件
cs 复制代码
[root@sever ~]# cat /etc/exports
/nfs/shared *(ro)
  • 重启
cs 复制代码
[root@server ~]# exportfs -r
  • 在客户端查看服务器的共享目录
cs 复制代码
[root@client ~]# showmount -e 192.168.147.28
Export list for 192.168.147.28:
/nfs/shared *
  • 客户端将nfs共享的目录挂载到指定目录下
cs 复制代码
[root@client ~]# mount -t nfs 192.168.147.28:/nfs/shared /client
[root@client ~]# df -Th
  • 在服务器上创建文件或目录
cs 复制代码
[root@server ~]# cd /nfs/shared/
[root@server shared]# ls
[root@server shared]# mkdir aaa

2.开放/nfs/upload目录为x.x.x.0/24网段的数据上传目录,并将所有用户及所属的用户组都映射为nfs-upload,其UID与GID均为3000

  • 在服务端创建/nfs/upload目录,创建用户和组为nfs-upload,指定UID,GID为3000
cs 复制代码
[root@server ~]# mkdir /nfs/upload
[root@sever ~]# useradd -r -u 300 nfs-upload
[root@server ~]# id nfs-upload
uid=300(nfs-upload) gid=300(nfs-upload) groups=300(nfs-upload)
[root@server ~]# 
  • 修改/nfs/exports文件
cs 复制代码
[root@server ~]# vim /etc/exports
[root@server ~]# cat /etc/exports
/nfs/shared *(ro)
/nfs/upload 192.168.120.0/24(rw,anonuid=3000,anongid=3000)
[root@server ~]# exportfs -r
  • 在客户端查看nfs共享的目录
cs 复制代码
[root@client ~]# showmount -e 192.168.147.28
Export list for 192.168.147.28:
/nfs/shared *
/nfs/upload 192.168.147.0/24
  • 将共享目录属组改为nfs-upload
cs 复制代码
[root@server ~]# chown -R 3000 /nfs/upload/
[root@server ~]# chgrp -R 3000 /nfs/upload/
[root@server ~]# ll /nfs/

3.配置ssh免密登陆,能够通过客户端主机通过redhat用户和服务端主机基于公钥验证方式进行远程连接server端创建用户redhat,切换用户为redhat,并制作公钥。

  • 在服务器端创建用户,制作公钥
  • 创建密钥
  • 测试是否可以进行免密登录

---------------------------------------------------END-------------------------------------------------------

相关推荐
grrrr_14 分钟前
【工具类】虚拟机 + Ubuntu 安全部署 OpenClaw,联动 Ollama 零成本解锁云端大模型
linux·运维·ubuntu·#openclaw·#小龙虾
HealthScience5 分钟前
github怎么授权ssh(私人库授权)
运维·ssh·github
OKkankan16 分钟前
深入理解linux进程
java·linux·c++
HABuo16 分钟前
【linux线程(一)】线程概念、线程控制详细剖析
linux·运维·服务器·c语言·c++·ubuntu·centos
路溪非溪36 分钟前
BLE的广播、扫描和连接等工作机制总结
linux·arm开发·驱动开发
gjc5921 小时前
踩坑实录:MySQL服务器CPU爆高,元凶竟是SELinux的setroubleshootd?
运维·服务器·数据库·mysql·adb
我才是一卓1 小时前
linux 安装简易 git 服务端并使用
linux·运维·git
德彪稳坐倒骑驴1 小时前
MySQL Server 5.5 win端安装,安装SQLyog
运维·服务器
Wanliang Li1 小时前
AArch64虚拟化——virtio-mmio实现
linux·虚拟化·virtio·hypervisor·mmio
乔宕一2 小时前
windows SSH服务修改SSH登陆后的默认终端
运维·windows·ssh