centos7-nfs服务端配置以及挂载

一、安装nfs服务并设置开机自动运行

#直接运行下面内容
#1.安装
yum install -y nfs-utils   #安装服务端
yum install nfs-utils rpcbind  #rpcbind支持
#2.设置开机启动
systemctl enable rpcbind.service           #启用rpcbind
systemctl enable nfs-server.service        #启用nfs-server
systemctl start rpcbind.service            #启动rpcbind
systemctl start nfs-server.service         #启动nfs-server
#3.检查是否运行,通过端口判断
rpcinfo -p    #查看是否有873和111端口

二、配置nfs文件

#修改nfs配置文件
vim /etc/exports
/files 192.168.1.*(rw,sync)          
#上面为一般方式,如果权限有问题用下面,下面默认所有的都是root权限
/files 192.168.1.*(rw,sync,no_root_squash,insecure)
#修改完毕,重启nfs
service nfs restart 
#验证是否启动
$netstat -lt  

三、挂载

1.linux客户端

#1.客户端安装
yum install nfs -y
#2.挂载命令:
mount -t nfs 192.168.1.2:/files /files
#备注
#第一个files为服务端的,共享文件夹
#第二个files为客户端的,需要绑定的文件夹
#3.开机自动挂载
vim /etc/fstab
192.168.1.2:/files /files nfs defaults 0 0

2.windows客户端

#1.window下nfs客户端安装
#widows2008以上的,可以通过系统自带的
#windows2008以下的,推荐第三方比如hanewin nfs server
#2.windows下挂载,打开cmd命令行
mount 192.168.1.2:/files Z:/files
#解释:
#第一个files为服务端的,共享文件夹
#第二个Z:files   意思是,把服务端的files共享文件夹绑定到Z盘下的files文件目录
#注意最后不要带斜杠

标签

发表评论