`
gcgmh
  • 浏览: 354948 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

linux NFS introduction

阅读更多
   网络文件系统(NFS)是一种在网络上的机器间共享文件的方法,文件就如同位于客户的本地硬盘驱动器上一样。Red Hat Linux 既可以是 NFS 服务器也可以是 NFS 客户,这意味着它可以把文件系统导出给其它系统,也可以挂载从其它机器上导入的文件系统。

1.在服务器端(10.0.1.7):配制NFS
   编辑/etc/exports文件添加共享目录:
   /data/nameNode 10.0.1.8(使用端的IP)(rw,sync,no_root_squash)。
   /data/nameNode 10.0.1.8(rw,sync,no_root_squash)
  ()内为opitons:
  rw:             可读写的权限;
  ro:             只读的权限;
  no_root_squash: 登入到NFS主机的用户如果是ROOT用户,他就拥有ROOT的权限 
  root_squash:    在登入 NFS 主机使用目录的使用者如果是 root 时,那么这个使用者的权限
  sync:           资料同步写入存储器中。
  async:          资料会先暂时存放在内存中,不会直接写入硬盘。

NFS服务的启动
    service nfs start

    service nfs restart

    service nfs stop

    service nfs reload 当修改过/etc/exports文件后不用重启服务可执行该命令

2.client通过mount命令挂载
  在10.0.1.8上,先到mnt目录中创建nn_bp,然后将NFS文件系统mnt上
  mkidr nn_bp
  mount 10.0.1.7:/data/nameNode /mnt/nn_bp

现在操作/mnt/nn_bp里的文件,就可以立即保存在10.0.1.7:/data/nameNode这个目录里。


分享到:
评论

相关推荐

    embeded-Linux-introduction-070822.pdf

    - 将嵌入式Linux的image下载到目标板:通过TFTP、NFS等方式。 - 嵌入式平台测试:验证基本功能,如网络连接、USB支持等。 - **嵌入式Linux驱动开发**: - 模块编程实验:继续深化内核模块的编写和调试。 - LED...

    1Introduction to the Linux Kernel.docx

    7. **文件系统**:Linux支持多种文件系统,包括ext4(默认的本地文件系统)、FAT、NTFS以及网络文件系统如NFS和SMB。 Linux操作系统的多样性:Linux不仅仅是一个内核,它还包括一个完整的软件生态系统,如Gnome和...

    Linux Professional Institute Certification

    在这一阶段,考生需要掌握更复杂的网络配置,如DNS、DHCP、NFS和Samba等服务,以及Linux系统下的程序编写和调试技巧。 301和302则对应LPIC-3认证,这是最高级别的LPI认证,重点在于高级系统设计和管理。这包括企业...

    McGraw-Hill.Linux.The.Complete.Reference.6th.Edition.2008.pdf

    1 Introduction to Linux 3 2 Getting Started 17 Part II The Linux Shell and File Structure 3 The Shell 35 4 The Shell Scripts and Programming 65 5 Shell Confi guration 89 6 Linux Files, Directories, ...

    Selinux introduction

    - **特殊文件系统**(Special File Systems): 包括NFS、SMB等网络文件系统。 - **特殊接口**(Special Interfaces): 如网络接口等。 #### 三、目标策略概览 ##### 3.1 什么是目标策略? 目标策略(Targeted Policy)是...

    Wiley.Publishing.Fedora.Linux.Toolbox.1000+.Commands.for.Fedora.CentOS.and.Red.Hat.Power.Users.and.Red.Hat.Power.Users.2008.pdf

    - **Network File Systems (NFS)**: Sharing files between systems using NFS. - **Web Services**: Interacting with web services and APIs using tools like `curl` and `wget`. #### Chapter 13: Doing Remote...

    Cfengine introduction.pdf

    8. **自动挂载NFS文件系统**: 支持网络文件系统的快速访问。 9. **文件和文件系统检查**: 确认文件的存在性和完整性。 10. **命令及脚本执行**: 运行必要的系统命令和脚本。 11. **安全补丁应用**: 应用安全相关的...

    Ubuntu.15.04.Server.with.systemd.Administration.and.Reference.epub

    Introduction to Ubuntu Linux Chapter 2. Installing the Ubuntu Server Chapter 3. Usage Basics: Login, Interfaces, and Help Chapter 4. Managing Software Part 2: Services Chapter 5. Managing Services ...

    Ubuntu The Complete Reference

    - **Overview of Ubuntu**: This chapter provides an introduction to Ubuntu Linux, covering its history, philosophy, and the reasons for its popularity among both individuals and organizations....

    OpenStack Juno 最新配置参考

    ##### 1.1 Introduction to the Block Storage Service Block Storage(也称为Cinder)是OpenStack项目中的一个组件,它提供持久化的块存储设备给计算实例使用。这些存储设备可以被挂载到云主机上,为用户提供灵活...

    C Programming The Tutorial 带书签pdf 0分

    版权声明之后列出了多个商标信息,包括BSD、Solaris、NFS、AIX、POSIX、UNIX、Linux、X Window、Microsoft Windows、MS-DOS、HP-UX等,并声明这些商标属于相应的公司或组织。 《C Programming: The Tutorial》的...

    java7帮助文档

    RowSet 1.1: The introduction of the RowSetFactory interface and the RowSetProvider class, which enable you to create all types of row sets supported by your JDBC driver; see Using the RowSetFactory ...

    kubernetes基础入门

    **1.1 Introduction** Kubernetes(简称K8s)是一种开源的容器编排系统,用于自动化部署、扩展和管理容器化应用。它提供了丰富的功能来简化复杂的容器部署流程,并支持多种云平台和虚拟化环境。 **1.2 Kubernetes...

Global site tag (gtag.js) - Google Analytics