- 论坛徽章:
- 0
|
关于nfs hard-mounted的文件问题,请高手把我救救我
当NFS在NFS客户端加载时,系统会问是使用 soft-mount 还是hard-mount, 它们的区别在于当发生网络或NFS服务器端故障时,选用hard-mount选项会引起NFS客户端的程序挂起,而soft-mount则不会。
soft-mount: 当客户端加载NFS不成功时,重试 retrans 设定的次数.
如果 retrans 次都不成功,则放弃此操作,返回错误信息 "Connect time out"
hard-mount: 当客户端加载NFS不成功时,一直重试,直到NFS服务器有响应。hard-mount 是系统的缺省值。
在选定hard-mount 时,最好同时选 intr , 允许中断系统的调用请求,避免引起系统的挂起。
当NFS服务器不能响应NFS客户端的 hard-mount请求时, NFS客户端会显示
"NFS server hostname not responding, still trying"
1. From the registry server host, execute:
cleartool lsvob -long <vob-tag>;
Save the uuid.
2. Issue a cleartool unregister -vob -uuid <vob's uuid>; |
|