博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Redhat下如何搭建NFS
阅读量:6238 次
发布时间:2019-06-22

本文共 1785 字,大约阅读时间需要 5 分钟。

环境:
OS:Red Hat Linux As 5
服务器ip:192.168.50.199
客户端ip:192.168.50.200
 
1.服务器上创建共享目录同时修改权限
mkdir /bak1/nfs_archivelog01
chmod -R 777 /bak1/nfs_archivelog01/
2.编辑exports文件
vim /etc/exports
写入
/bak1/nfs_archivelog01 192.168.50.200/255.255.255.0(rw,sync)
格式是:
要共享的目录 对方的IP及掩码或者域名(权限,同步更新)
 
3.启动服务
/etc/init.d/portmap restart
/etc/init.d/nfs restart
chkconfig nfs on
chkconfig portmap on
然后关闭防火墙以及更改Selinux关于NIS的选项
/etc/init.d/iptables stop
 (防护墙服务关闭)
chkconfig iptables off
system-config-selinux (设置selinux)
查看共享的东西
[root@node1 nfs_archivelog01]# exportfs -rv
exporting 192.168.50.200/255.255.255.0:/bak1/nfs_archivelog01
 
 
4.客户端
手工mount:
mount -t nfs 192.168.50.199:/bak1/nfs_archivelog01 /bak2/nfs_archivelog02
192.168.50.199 是服务器的ip
/bak1/nfs_archivelog01 是服务器上的目录
/bak2/nfs_archivelog02 是本机客户端上的目录
自动mount:
编辑fstab文件,实现开机自动挂载
mount -t nfs IP:/目录 挂载到的目录 (此为临时挂载)
vim /etc/fstab 添加如下内容
192.168.50.199:/bak1/nfs_archivelog01     /bak2/nfs_archivelog02   nfs     defaults        0 0
 
 
相关的一些命令:
showmout命令对于NFS的操作和查错有很大的帮助.
showmout
 
-a:这个参数是一般在NFS SERVER上使用,是用来显示已经mount上本机nfs目录的cline机器.
-e:显示指定的NFS SERVER上export出来的目录.
例如: 
[root@node1 nfs_archivelog01]# showmount -e 192.168.50.199
Export list for 192.168.50.199:
/bak1/nfs_archivelog01 192.168.50.200/255.255.255.0
 
exportfs命令:
如果我们在启动了NFS之后又修改了/etc/exports,是不是还要重新启动nfs呢?这个时候我们就可以用exportfs命令来使改动立刻生效,该命令格式如下:
exportfs [-aruv]
 
-a :全部mount或者unmount /etc/exports中的内容 
-r :重新mount /etc/exports中分享出来的目录 
-u :umount 目录 
-v :在 export 的时候,将详细的信息输出到屏幕上.
具体例子:
[root @test root]# exportfs -rv <==全部重新 export 一次! 
exporting 192.168.0.100:/home/test 
exporting 192.168.0.*:/home/public 
exporting *.the9.com:/home/linux 
exporting *:/home/public 
exporting *:/tmp 
reexporting 192.168.0.100:/home/test to kernel
exportfs -au
 <==全部都卸载了

转载于:https://www.cnblogs.com/ariclee/p/4726684.html

你可能感兴趣的文章
yum源配置
查看>>
Python操作redis
查看>>
spring+springmvc+mybatis+maven整合
查看>>
(原)ubuntu中安装tensorflow
查看>>
如何设置双网卡路由
查看>>
组策略导入导出secedit
查看>>
Windows Phone 7.5 - Local SQL Database(简介)
查看>>
微软宣布Entity Framework 5的性能有了显著提升
查看>>
SPSS中八类常用非参数检验之二:二项分布(Binomial)检验
查看>>
mysql字段类型范围说明:int、bigint、smallint、tinyint,char、varchar、nvarchar
查看>>
php简单对象与数组的转换函数代码(php多层数组和对象的转换)
查看>>
C# Socket编程(5)使用TCP Socket
查看>>
SQL SERVER IN参数化处理
查看>>
Python MongoDB Spatial Query
查看>>
NetBeans IDE 7.4 Beta版本build JavaFX时生成的可执行jar包执行时找不到依赖的jar包
查看>>
笔记本wifi热点设置好后,手机连上但不能上网问题
查看>>
Run ASP.NET MVC site on mac (mono/xamarin studio)
查看>>
win8.1安装驱动出现“文件的哈希值不在指定的目录”的解决办法[zz]
查看>>
CRM 常用SQL 脚本
查看>>
备忘录--关于线程和IO知识
查看>>