OS/Linux

[Linux] Resource temporarily unavailable(자원이 일시적으로 사용 불가능함)

Ma_Sand 2023. 10. 16. 01:08
반응형

Resource temporarily unavailable(자원이 일시적으로 사용 불가능함)

정상적으로 잘되던 계정 전환이 갑자기 되지 않으면서 다음과 같이 에러가 떴다.

 

그래서 계정에 할당된 리소스를 확인해보았다. 이는 /etc/security/limits.conf에서 확인하면 된다.

vi /etc/security/limits.conf

root     soft     nofile     81920
root     hard     nofile     81920
root     soft     nproc     81920
root     hard     nproc     81920

위와 같이 root에는 리소스가 할당되어 있었으나, 내가 접속하려는 계정은 그렇지 않았다.

 

그래서 해당 계정도 /etc/security/limits.conf에 추가하였다.

vi /etc/security/limits.conf

root     soft     nofile     81920
root     hard     nofile     81920
root     soft     nproc     81920
root     hard     nproc     81920

linux02     soft     nofile     81920
linux02     hard     nofile     81920
linux02     soft     nproc     81920
linux02     hard     nproc     81920

 

그러고 다시 전환 시도하였더니 정상적으로 작동되었다.

 

반응형