zoukankan      html  css  js  c++  java
  • NFS排错

    # 客户端 no route to host
    1.网络
    [root@web01 ~]# ping 172.16.1.31			#查看是否可以进行网络通信
    
    2.端口,nfs服务的运行不使用端口,#不用检查端口
    [root@web02 ~]# netstat -lntup|grep nfs	
    
    3.防火墙
    [root@nfs ~]# systemctl status firewalld
    
    4.selinux
    [root@nfs ~]# getenforce 
    
    5.查看服务端 共享目录权限
    [root@nfs ~]# ll /date -d	
    
    6.#服务端nfs配置文件
    /date 172.16.1.0/24(rw,sync,all_squash,anonuid=666,anongid=666)
    共享目录,网段(2-254)或指定IP,rw,(每个用户都可以对共享目录操作),统一匿名用户www
    
    [root@web01 ~]# ping 176.12.1.7		#能力范围之外...
    PING 176.12.1.7 (176.12.1.7) 56(84) bytes of data.
    64 bytes from 176.12.1.7: icmp_seq=1 ttl=128 time=354 ms
    64 bytes from 176.12.1.7: icmp_seq=2 ttl=128 time=400 ms
    
  • 相关阅读:
    04_远程管理常用命令
    03_文件和目录常用命令
    02_Linux 终端命令格式
    01_常用 Linux 命令的基本使用
    test
    centOS 7 更改root密码
    安装 centos7
    1
    IO模型
    使用git连接到Github
  • 原文地址:https://www.cnblogs.com/syy1757528181/p/12886254.html
Copyright © 2011-2022 走看看