Centos7 树莓派安装NFS服务

硬件:树莓派3B
环境:CentOS-Userland-7-armv7hl-RaspberryPI-GNOME-1804-sda

服务端安装和配置:
1.禁用并永久关闭防火墙
>>systemctl disable firewalld
>>systemctl stop firewalld

2.关闭selinux
>>vim /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled

3.安装nfs和相关
>>yum install -y nfs-utils rpcbind

4.创建共享的目录
>>cd /
>>mkdir share
>>chown nfsnobody:nfsnobody share
>>chmod 777 share

5.编辑nfs配置文件
>>vim /etc/exports
添加一行:
/share *(rw, sync)

6.启动服务并设置开机启动
>>systemctl start nfs
>>systemctl enable nfs
>>systemctl start rpcbind
>>systemctl enable rpcbind

7.查看本机正在共享的目录
>>exportfs
不出意外,就能看到" /share xxxxx "字样

Windows客户端挂载测试:
1.启用nfs客户端
控制面板-启用windows功能-nfs客户端

2.扫描服务端可挂载目录:
cmd:
>>showmount -e 192.168.198.2
应该就能看到“/share”字样了

3.挂载测试:
cmd:
>>mount 192.168.198.2:/share x:
看到字样“现已成功连接到xxxx”表示成功挂载,打开我的电脑就能看到新挂载的x盘了,测试读写

参考链接:
http://www.alliedjeep.com/17934.htm
https://www.linuxidc.com/Linux/2017-06/144467.htm
https://blog.csdn.net/Dragen1860/article/details/48287027
https://blog.csdn.net/xiaoxinyu316/article/details/40075637

原文地址:https://www.cnblogs.com/woodj/p/9058472.html

时间: 2024-11-09 09:44:13

Centos7 树莓派安装NFS服务的相关文章

ubuntu 安装nfs 服务

1. 安装nfs服务软件 (1)服务器端 $sudo apt-get install nfs-kernel-server  rpcbind (2)客户端 (可以省略) $sudo apt-get install nfs-common 2. 服务器端配置 创建共享目录, mkdir -p /home/jason/nfs_dir 修改共享目录权限, chmod 777 /home/jason/nfs_dir 修改配置文件, $sudo vim /etc/exports ###########添加服务

centos7.4安装samba服务

centos7.4安装samba服务 系统平台 CentOS Linux release 7.4.1708 (Core) 关闭防火墙,selinux 安装 samba-4.6.2-8.el7.x86_64 samba-client-4.6.2-8.el7.x86_64 配置/etc/samba/smb.conf 创建共享目录,本地目录权限和共享权限 创建系统用户与共享用户的密码 启动 smb.service 客户端访问共享服务器 [[email protected] ~]# cat /etc/r

centos7下搭建nfs服务

现在有3台服务器 s1(主),s2(从), s3(从)需要实现文件实时同步,我们可以安装Nfs服务端和客户端来实现! 一.安装 NFS 服务器所需的软件包: yum install -y nfs-utils二.编辑exports文件,添加从机 vim /etc/exports/home/nfs/ 192.168.248.0/24(rw,sync,fsid=0)同192.168.248.0/24一个网络号的主机可以挂载NFS服务器上的/home/nfs/目录到自己的文件系统中 rw表示可读写:sy

Linux centos 7 安装NFS服务

NFS服务简介:NFS是Network File System的缩写,即网络文件系统.客户端通过挂载的方式将NFS服务器端共享的数据目录挂载到本地目录下.---主要功能指的是共享文件 为什么要安装NFS服务:当服务器访问流量过大时,需要多台服务区进行分流,而这多台服务器可以使用NFS服务进行共享.(NFS服务是最基础的共享服务) 应用场景:NFS 应用场景,常用于高可用文件共享, 多台服务器共享同样的数据,可扩展性比较差,本身高可用方案不完善,取而代之的数据量比较大的可以采用 MFS. TFS.

centos7安装nfs服务配置

nfs为什么需要RPC?因为NFS支持的功能很多,不同功能会使用不同程序来启动,因此,NFS对应的功能所对应的端口无法固定.端口不固定造成客户端与服务端之间的通信障碍,所以需要RPC来从中帮忙.NFS启动时会随机取用若干端口,然后主动向RPC服务注册取用相关端口和功能信息,RPC使用固定端口111来监听来自NFS客户端的请求,并将正确的NFS服务端口信息返回给客户端,这样客户端与服务端就可以进行数据传输了 1.由程序在NFS客户端发起存取文件的请求,客户端本地的RPC(rpcbind)服务会通过

centos7.1安装nfs

环境:centos7.1 server:192.168.0.63 client:192.168.0.64 (centos7.1 客户端) 共享文件的目录用户为:web(uid:1000,gid:1000) 一.安装 yum -y install nfs-utils rpcbind nfs 的配置文件 /etc/expots 共享目录赋予权限:chmod 755  /home/data vim /etc/exports /home/data  192.168.0.0/24(rw,async,ins

简单安装NFS服务端和客户端

[[email protected] ~]# cat /etc/redhat-release =>查看操作系统CentOS release 6.9 (Final)[[email protected] ~]# uname -r =>查看操作系统内核2.6.32-696.el6.x86_64[[email protected] ~]# uname -m =>查看操作系统位数x86_64 准备2台虚拟机,2台都安装nfs-utils rpcbind工具.nfs01为服务器端,web01为客户端

CentOS 7 安装NFS服务端和客户端

操作系统: CentOS Linux release 7.2.1511 (Core) NFS服务端安装: yum install nfs-utils -y 创建共享 1.在/etc/exports配置文件中添加以下内容,保存退出: /Data 10.10.172.0/255.255.255.0(rw,sync,no_root_squash) 2.创建共享目录并给予写的权限 mkdir /Data chmod o+w /Data 启动NFS服务 systemctl restart rpcbind

CentOS7 下安装telnet服务

今天搞了下 Centos 7 下面升级 openssl 和 openssh ,顺便装了下 telnet # 安装 telnet 避免 ssh 无法登录 yum -y install xinetd telnet telnet-server # 允许 root 账号登陆 vi /etc/securetty # 末尾添加两行 pts/0 pts/1 # 添加防火墙端口 vi /etc/sysconfig/iptables -A INPUT -p tcp -m state --state NEW -m