Linux

centos8 nfs nfsd: too many open connections, consider increasing the number of threads

Naan 2020. 12. 22. 11:34
320x100

centos7 버전에서 nfsd: too many open connections, consider increasing the number of threads 와 같이 에러가 발생 하면

/etc/sysconfig/nfs 

파일에서 

#RPCNFSDCOUNT=8

이부분을 주석 제거 하고 수치 변경해주면 됐다.

하지만 centos 8 nfs 버전에서는 위 경로가 변경되어

/etc/nfs.conf

위 파일을 수정하고

[nfsd]

# debug=0

# threads=8

threads=1024 

주석 제거 하고 threads 값을 변경해주면 된다.

서비스 재시작

systemctl restart nfs-server.service

혹시 모르니

[mountd]

threads=1024 

애도 추가 해주자.

 

 

 

320x100