博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
个人笔记:linux nfs设置
阅读量:6813 次
发布时间:2019-06-26

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

服务器端:
[root@dgserver stdby]# vi /etc/exports
 
[1]+  Stopped                 vi /etc/exports
[root@dgserver stdby]# vi /etc/exports
[root@dgserver stdby]# /etc/rc.d/init.d/portmap start
Starting portmap:                                          [  OK  ]
[root@dgserver stdby]# /etc/rc.d/init.d/nfs start
Starting NFS services:                                     [  OK  ]
Starting NFS quotas:                                       [  OK  ]
Starting NFS daemon:                                       [  OK  ]
Starting NFS mountd:                                       [  OK  ]
[root@dgserver stdby]# exportfs -rv
exporting *:/u01/rmanbak
[root@dgserver stdby]# 
客户端
[root@oracle1 ~]# showmount -e 192.168.13.109
Export list for 192.168.13.109:
/u01/rmanbak *
[root@oracle1 ~]# 

 

转载地址:http://lpmwl.baihongyu.com/

你可能感兴趣的文章
虚拟化技术在企业中的实际应用
查看>>
Unity3D面试题汇总
查看>>
JAVA多线程之中断机制(如何处理中断?)
查看>>
Azure 基础:Blob Storage
查看>>
PLSQL Developer中test window的使用
查看>>
使用RMAN恢复目录(catalog)解析
查看>>
Android -- tools
查看>>
Oracle的卸载过程步骤
查看>>
警告框(AlertView)与进度轮结合使用
查看>>
Redis Sentinel实现的机制与原理详解
查看>>
POST中文乱码解决方案
查看>>
nginx 配置php
查看>>
16.8. Address
查看>>
知识共享许可协议
查看>>
liux环境下配置jdk
查看>>
【案例】MySQL count操作优化案例一则
查看>>
Nim教程【十一】
查看>>
vba 工作案例1
查看>>
java中Executor、ExecutorService、ThreadPoolExecutor介绍(转)
查看>>
获取synchronized锁中的阻塞队列中的线程是非公平的
查看>>