免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5005 | 回复: 9
打印 上一主题 下一主题

[服务应用] nfs 挂载不成功,求助! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-21 22:49 |只看该作者 |倒序浏览
本帖最后由 zippozhangDK 于 2012-05-21 22:56 编辑

小弟今天配nfs出现了一个问题,查阅各种资料,一直未能解决,希望高手相助

server端(192.168.1.201)
1./etc/exports
     /mnt/storage *.example.com(rw,sync,no_root_squash)

2.www.example.com --- 192.168.1.202 (正向解析和反向解析均无问题,在server端和client端均进行了测试)

3.192.168.1.201 为DNS服务器,NFS服务器

client端(192.168.1.202)
1. mount -t nfs 192.168.1.201:/mnt/storage /mnt

报错:mount.nfs: access denied by server while mounting 192.168.1.201:/mnt/storage

PS:1.如果将/etc/exports的配置改为/mnt/storage  *(rw,sync,no_root_squash)挂载就很正常
      2.iptable已经清空
      3. selinux已经关


论坛徽章:
0
2 [报告]
发表于 2012-05-22 09:19 |只看该作者
回复 1# zippozhangDK


     *.example.com  可以这样写么,换成IP的正常,那肯定就是这里出现问题。

论坛徽章:
0
3 [报告]
发表于 2012-05-22 10:19 |只看该作者
问题已找到,在/etc/exports 里写成
*.example.com (rw,sync,no_root_squash) 中间加上空格就可以了!!!  求高手解释原理~~~

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
4 [报告]
发表于 2012-05-22 10:32 |只看该作者
回复 3# zippozhangDK


    这是规则!

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
5 [报告]
发表于 2012-05-22 10:35 |只看该作者
  1. # NFS (Network FileSystem)
  2. # NFS ==> nfs-utils
  3. RPC(Remote Procedure Call) rpc.nfsd rpc.mountd rpc.lockd rpc.statd
  4. # ===> ATTENTION: <===
  5. # Replace x with an unused port number
  6. vim /etc/sysconfig/nfs
  7. MOUNTD_PORT="x" STATD_PORT="x" LOCKD_TCPPORT="x" LOCKD_UDPPORT="x"

  8. #  To configure a firewall to allow NFS:
  9. 1.Allow TCP and UDP port 2049 for NFS.
  10. 2.Allow TCP and UDP port 111 (portmap/sunrpc).
  11. 3.Allow the TCP and UDP port specified with MOUNTD_PORT="x"
  12. 4.Allow the TCP and UDP port specified with STATD_PORT="x"
  13. 5.Allow the TCP port specified with LOCKD_TCPPORT="x"
  14. 6.Allow the UDP port specified with LOCKD_UDPPORT="x"
  15. RQUOTAD_PORT="4005"
  16. STATD_OUTGOING_PORT="4006"

  17. /etc/exports            (NFS file systems being exported (for Kernel based NFS)
  18. /usr/sbin/exportfs      (Maintain list of NFS exported file systems)
  19. /usr/sbin/showmount     (show mount information for an NFS server)
  20. /var/lib/nfs/etab       (Records the NFS shared Dir and Permission)
  21. /var/lib/nfs/xtab       (Client's connection records)
  22. /var/lib/nfs/*.tab

  23. # man exports   (Read the Specification)
  24. vim /etc/exports
  25. /tmp    192.168.0.0/24(ro)      localhost(rw,async)     *.example.com(ro,sync)
  26. /tmp    *(rw,root_squash)
  27. /home/public    192.168.0.0/24(rw)      *(ro)
  28. # all_squash ==> (Map all uids and gids to the anonymous user)
  29. cat /etc/passwd |egrep 'nobody|nfsnobody'
  30. nobody ==> 99
  31. nfsnobody ==> 65534
  32. /home/linux     *.example.com(rw,all_squash,anonuid=99,anongid=99,sync)
  33. # sample /etc/exports file
  34.        /               master(rw) trusty(rw,no_root_squash)
  35.        /projects       proj*.local.domain(rw)
  36.        /usr            *.local.domain(ro) @trusted(rw)
  37.        /home/joe       pc001(rw,all_squash,anonuid=150,anongid=100)
  38.        /pub            (ro,insecure,all_squash)

  39. /etc/init.d/portmap restart
  40. /etc/init.d/nfs restart
  41. /etc/init.d/nfslock restart
  42. rpcinfo -p localhost
  43. cat /var/lib/nfs/etab

  44. showmount -e localhost
  45. exportfs -arv
  46. exportfs -auv
  47. exportfs -o async django:/usr/tmp
  48. mount -t nfs -o nosuid,noexec,nodev,bg,rw,soft 192.168.0.2:/home/public /home/nfs
  49. mount -t nfs 192.168.0.2:/home/public /home/nfs

  50. #chkconfig netfs on
  51. #service netfs restart
  52. vim /etc/fstab
  53. 192.168.0.2:/home/public        /home/nfs       nfs nosuid,noexec,nodev,bg,rw,soft,rsize=32768,wsize=32768      0 0

  54. # TCP Wrappers Control
  55. vim /etc/hosts.allow
  56. mountd,portmap: 192.168.0.0/255.255.255.0
  57. mountd: 192.168.0.

  58. # AutoMounter for NFS
  59. chkconfig autofs on
  60. service autofs restart
  61. vim /etc/auto.master
  62. /home/guests    /etc/auto.guests        --timeout=60
  63. cp /etc/auto.misc /etc/auto.guests
  64. vim /etc/auto.guests
  65. * -rw,soft,intr 192.168.1.1:/home/guests/&

复制代码

论坛徽章:
0
6 [报告]
发表于 2012-05-22 10:39 |只看该作者
回复 5# ulovko


    上图27行也没有加空格啊?
27 .  /tmp    192.168.0.0/24(ro)      localhost(rw,async)     *.example.com(ro,sync)

论坛徽章:
0
7 [报告]
发表于 2012-05-22 10:40 |只看该作者
灵异事件,看不出有什么问题,vmware上测试也没有这个问题.
  1. [root@co601 ~]# cat /etc/exports
  2. /nfsshare/root *.cs.com(rw,sync,no_root_squash)

  3. [root@co601 ~]# showmount -e localhost
  4. Export list for localhost:
  5. /nfsshare/root *.cs.com
  6. [root@co601 ~]# getenforce
  7. Disabled
  8. [root@co601 ~]# service iptables status
  9. iptables: Firewall is not running.
复制代码
  1. [root@co602 ~]# showmount -e co601.cs.com
  2. Export list for co601.cs.com:
  3. /nfsshare/root *.cs.com
  4. [root@co602 ~]# df -h
  5. Filesystem            Size  Used Avail Use% Mounted on
  6. /dev/mapper/vg_co601-LogVol00
  7.                        15G  4.8G  9.6G  34% /
  8. tmpfs                 504M     0  504M   0% /dev/shm
  9. /dev/sda1             291M   46M  231M  17% /boot
  10. [root@co602 ~]# mount -t nfs 192.168.100.165:/nfsshare/root /mnt/nfsts1
  11. [root@co602 ~]# df -h
  12. Filesystem            Size  Used Avail Use% Mounted on
  13. /dev/mapper/vg_co601-LogVol00
  14.                        15G  4.8G  9.6G  34% /
  15. tmpfs                 504M     0  504M   0% /dev/shm
  16. /dev/sda1             291M   46M  231M  17% /boot
  17. 192.168.100.165:/nfsshare/root
  18.                        20G   14G  5.6G  71% /mnt/nfsts1
  19. [root@co602 ~]# hostname
  20. co602.cs.com
复制代码

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
8 [报告]
发表于 2012-05-22 10:41 |只看该作者
本帖最后由 ulovko 于 2012-05-22 10:44 编辑

回复 6# zippozhangDK


   前面是本地目录 后面是**权限

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
9 [报告]
发表于 2012-05-22 10:44 |只看该作者

论坛徽章:
0
10 [报告]
发表于 2012-05-22 10:49 |只看该作者
看到了,多谢您的回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP