제한은 없다.. 다만 시스템 리소스와 연관관계가 있음..
다음 대답 보기
http://kbase.redhat.com/faq/docs/DOC-5379
What would be the maximum number of NFS clients supported by a Red Hat Enterprise Linux 3 NFS server?
Created on: Jan 4, 2005 6:00 PM - Last Modified: Jan 6, 2005 6:00 PM
There is no hard limit for the NFS client count - it depends on the system resources (memory, filesystem, storage subsystem performance, etc). However, the socket buffer where the nfsds is listening to (obtain the requests from) roughly has room for
(number_of_nfsd + 3)
requests. Adding the fact that each nfsds always carries its work until completion before grabbing the next request, a Red Hat Enterprise Linux 3 NFS server can take
((number_of_nfsd * 2) + 3)
simultaneous requests at a time.
Note: This is a theoretical number and it depends on the resources and the nature of the requests. For example, if any NFSD is blocked in the I/O path, the unprocessed requests is still sitting in the socket buffer and may get timeouts from the client side. Re-transmits would occur and the server capacity would start to drop.
'c or linux' 카테고리의 다른 글
rsh timeout 옵션과 함께 동작시키기 (0) | 2009.02.04 |
---|---|
리눅스 rsh 의 timeout 기능 (0) | 2009.02.04 |
Linux에서의 /etc/sudoers 수정하여 특정 사용자에게 패스워드 실행시키기 (0) | 2008.09.11 |
아파치의 rewriteRule 문제점 (0) | 2008.02.28 |
gethostbyname, getaddrinfo 사용한 샘플 소스 (0) | 2008.02.26 |