`
itspace
  • 浏览: 981859 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

exportfs: No host name问题处理

阅读更多
linux版本为
引用
[root@red42 ~]# uname -a
Linux red42 2.6.9-22.ELsmp #1 SMP Mon Sep 19 18:32:14 EDT 2005 i686 i686 i386 GNU/Linux


该主机作为nfs的server端,执行exportfs -a时报错
引用
[root@red42 ~]# exportfs -a
exportfs: No host name given with /Tbackup/ora10g1 (rw,sync,wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,subtree_check,secure_locks,mapping=identity,anonuid=-2,anongid=-2), suggest *(rw,sync,wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,subtree_check,secure_locks,mapping=identity,anonuid=-2,anongid=-2) to avoid warning


查看/etc/hosts文件,正常
引用
[root@red42 ~]# more /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1             localhost
172.16.4.67     red41
172.16.4.68     red42


查看/etc/exports文件,正常
引用
[root@red42 ~]# more /etc/exports
/Tbackup/ora10g1 172.16.4.67(rw,async,no_root_squash)


尝试用以下命令,执行成功
引用
[root@red42 ~]# exportfs -ra


下面看一下各个参数的作用,尤其注意r参数
引用

OPTIONS
       -a     Export or unexport all directories.

       -o options,...
              Specify a list of export options in the same manner as in exports(5).

       -i     Ignore the /etc/exports file, so that only default options and options given on the command line are used.

       -r     Reexport  all  directories.  It  synchronizes  /var/lib/nfs/xtab  with  /etc/exports.   It   removes   entries   in
              /var/lib/nfs/xtab  which  are  deleted from /etc/exports, and remove any entries from the kernel export table which
              are no longer valid.

       -u     Unexport one or more directories.

       -f     In 鈥檔ew鈥?mode, flush everything out of the kernels export table. Any clients that are active will get  new  entries
              added by mountd when they make their next request.

       -v     Be verbose. When exporting or unexporting, show what鈥檚 going on. When displaying the current export list, also dis-
              play the list of export options.
0
0
分享到:
评论

相关推荐

    exportfs:Go 包处理 NFS 服务器的导出文件

    开发者可以通过捕获这些错误来处理异常情况,并可能使用日志记录功能来追踪问题。 总的来说,`exportfs`是Go语言环境下处理NFS服务器导出文件的强大工具。它简化了对`/etc/exports`的管理,提供了丰富的功能和灵活...

    快速搭建NFS服务器

    2. /usr/sbin/exportfs:维护NFS共享资源的命令 3. /usr/sbin/showmount:查看NFS共享目录资源的命令 4. /var/lib/nfs/etab:记录NFS共享出来的目录的完整权限设定值 六、NFS的常用目录 1. /etc/exports:NFS的...

    k8s-nfs安装部署

    sudo exportfs -ra ``` 4. 开启NFS服务并设置开机启动: 对于Debian/Ubuntu: ``` sudo systemctl enable nfs-kernel-server sudo systemctl start nfs-kernel-server ``` 对于RHEL/CentOS: ``` sudo ...

    NetApp_7-mode常用指令

    - `/vol/vol1/share -rw=host1:host2,root=host1`:允许`host1`和`host2`读写访问`/vol/vol1/share`目录,但只有`host1`具有根权限。 - `/vol/vol1 -rw=host2`:仅允许`host2`读写访问`/vol/vol1`目录。 - `/vol/vol...

    CentOS下NFS服务器配置实例.doc

    例如,在启动NFS服务时出现错误提示,如`exportfs: No options for /usr/local/data/ 192.168.0.122: suggest 192.168.0.122(sync) to av`。这通常是因为在NFS配置文件`/etc/exports`中的地址与权限之间有多余的空格...

    NFS配置详解

    /usr/sbin/exportfs /u01/logs -sec=sys:krb5p:krb5i:krb5:dh:none,rw,access=host_name ``` 在配置NFS以供Windows客户端使用时,通常还需要在Windows上安装SFU(Services For Unix),它提供了一个NFS客户端,使...

    LINUX期末考试试卷.doc

    - `[b2] path=/samba/b2 valid users = bys,gd read only = no browseable = yes write list = bys` - `[b3] path=/samba/b3 create mask = 0770 directory mask = 0770 force user = %S force group = %G` - ...

    挂载NFS个人小结(所有问题一起来解决)

    3. **身份验证问题**:NFS默认使用匿名用户,如需指定用户权限,需配置`/etc/exports`中的`no_root_squash`或`root_squash`选项。 4. **网络问题**:网络不稳定或配置错误可能导致挂载失败,检查网络连接和服务器的...

    nas存储日常维护PPT学习教案.pptx

    - **exportfs命令**:用于导出NFS共享,如`exportfs –i –o rw=host2:host3 /vol/volnew/sales/january`设置读写权限,`exportfs –uav`取消所有挂载。 了解并熟练掌握这些命令和管理方法对于确保NAS系统的稳定...

    NETAPP_dataontap相关命令

    volcreate [vol-name] [aggr-name] [size] ``` - **功能**:创建新的卷。 - **参数说明**: - `[vol-name]`:卷的名称。 - `[aggr-name]`:聚合的名称。 - `[size]`:卷的大小。 - **示例**: ```sh vol...

    linux配置NFS指导.docx

    例如: `/var/nfs 172.20.*.* (rw, sync, no_root_squash)`。 注意:必须注意 nfs/ 目录的访问权限,必须设置成 777 权限;父目录 /var 权限无要求,普通的 755 即可。 2. 启动服务 启动相关服务:portmap、...

    ARM板上挂载NFS文件系统

    ### ARM板上挂载NFS文件系统的详细指南 #### 一、概述 本文档旨在详细介绍如何在ARM开发板上挂载NFS(Network File System)...此外,本文还提供了一些常见的错误处理方法,帮助您解决实际操作过程中可能遇到的问题。

    网络文件系统(NFS)的搭建及问题解决.doc

    网络文件系统(NFS)的搭建及问题解决 一、网络文件系统(NFS)概述 网络文件系统(NFS)是一种允许不同的计算机之间共享文件的协议。它使得不同的操作系统之间可以共享文件,使得计算机之间的数据共享变得更加...

    K8S监控之NFS动态storageClass存储

    在Linux系统中,通常会在`/etc/exports`文件中定义共享目录,并使用`exportfs`命令重新加载配置。 4. **使用PVC**: 应用开发者可以创建一个PVC来请求NFS存储,如下: ```yaml apiVersion: v1 kind: ...

    NFS服务器配置与管理.pdf

    exportfs -o ro,async,no_subtree_check /shareshare ``` 此命令将 /shareshare 目录导出到客户端,并指定访问权限为只读(ro),异步写入(async),且不允许子目录递归检查(no_subtree_check)。 NFS 服务器配置...

    CentOS下NFS服务器配置.pdf

    (3)启动服务:exportfs -r 3. exports文件配置参数 exports文件中的每行配置可以分为两部分:共享目录和客户端地址及权限。 (1)共享目录:使用绝对路径,例如/nfsdata (2)客户端地址及权限: * 地址可以...

    nfs-utils-2.5.3.tar.gz

    在使用nfs-utils时,可能会遇到各种问题,如挂载失败、连接中断等。此时,可以检查日志(/var/log/messages通常是默认的日志位置),使用`showmount`检查服务器状态,或使用`mount`命令查看本地挂载情况。同时,保持...

    NFS服务主程序所需文件:nfs-utils-2.3.3

    8. **监测和日志工具**:nfs-utils还包括一些用于监控NFS服务性能和状态的工具,如`rpcinfo`、`rpcdebug`和日志记录,帮助管理员诊断和解决问题。 安装和配置nfs-utils-2.3.3后,服务器需要启动相关服务(如nfsd、...

    第十四章 Linux的NFS服务器.docx

    在配置好`/etc/exports`后,使用`exportfs`命令更新NFS服务,并重启NFS服务以应用更改。通常,这包括: ```bash # exportfs -a # systemctl restart nfs-server ``` 总之,Linux的NFS服务器提供了一种有效的方法来...

    NFS文档 NFS最全文档 NFS详解文档

    - **更强的锁机制**:NFSv3 的锁机制更加完善,支持多种类型的锁,并且能够处理更多并发场景下的锁冲突问题。 - **客户端端口映射**:NFSv3 中的客户端端口映射机制更加灵活和高效,便于客户端查找服务端的端口信息...

Global site tag (gtag.js) - Google Analytics