zoukankan      html  css  js  c++  java
  • redhat6.5文件共享

    以下操作均需要root用户
    
    a端:
    
    固定nfs端口
    #vi /etc/sysconfig/nfs
    将里面的RQUOTAD_PORT、LOCKD_TCPPORT、LOCKD_UDPPORT、MOUNTD_PORT、STATD_PORT前面注释去掉,保存退出
    
    编辑共享目录配置
    #vi /etc/exports
    添加
    /usr/irsapp/irs_upload_files/ 10.1.90.14(insecure,rw,sync,no_root_squash)
    保存退出
    
    重启nfs服务
    #service nfs restart
    
    将以上端口和 nfs 2049、portmapper111 添加进防火墙规则
    #vi /etc/sysconfig/iptables
    
    -A INPUT -m state --state NEW -m udp -p udp --dport 111 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 111 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 2049 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 2049 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 892 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 892 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 662 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 662 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 875 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 875 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 32803 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 32803 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 32769 -j ACCEPT
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 32769 -j ACCEPT 保存退出,重启防火墙 #service iptables restart b端 #mount
    10.1.90.13:/usr/irsapp/irs_upload_files/ /usr/irsapp/irs_upload_files/ 设置开机自动挂载 #vi /etc/rc.local 在最后面添加上面的挂载命令
  • 相关阅读:
    常见hash算法的原理
    【学习干货】给coder的10个读书建议
    htc one x刷机记录
    Linux 搭建SVN server
    javascript
    USACO comehome Dijkstra
    当设计师、产品经理和程序员去交友站点找女朋友
    Spring3.0 AOP 具体解释
    慕课网Hibernate初探之一对多映射实验及总结
    C++数组引用
  • 原文地址:https://www.cnblogs.com/live365wang/p/5070203.html
Copyright © 2011-2022 走看看