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-------------------------------------------------------

相关推荐
LH_R1 天前
OneTerm开源堡垒机实战(四):访问授权与安全管控
运维·后端·安全
用户31187945592181 天前
Kylin Linux 10 安装 glib2-devel-2.62.5-7.ky10.x86_64.rpm 方法(附安装包)
linux
Raymond运维1 天前
MariaDB源码编译安装(二)
运维·数据库·mariadb
涛啊涛1 天前
Centos7非LVM根分区容量不足后扩容,对调硬盘挂载/
linux·磁盘管理
JuiceFS2 天前
从 MLPerf Storage v2.0 看 AI 训练中的存储性能与扩展能力
运维·后端
CYRUS_STUDIO2 天前
用 Frida 控制 Android 线程:kill 命令、挂起与恢复全解析
android·linux·逆向
熊猫李2 天前
rootfs-根文件系统详解
linux
chen9452 天前
mysql 3节点mgr集群部署
运维·后端
LH_R2 天前
OneTerm开源堡垒机实战(三):功能扩展与效率提升
运维·后端·安全
dessler2 天前
Hadoop HDFS-高可用集群部署
linux·运维·hdfs