web-dev-qa-db-ja.com

su:/ bin / bash:リソースは一時的に利用できません

ユーザーをpostgresに切り替えることができません。

PostgresユーザーのUlimit設定には、妥当な制限が設定されています。最大に達していません。

/ var/log/messagesにエラーはありません。

エラー:

BETA -bash-4.2# Sudo su - postgres
su: /bin/bash: Resource temporarily unavailable

設定:

BETA -bash-4.2# ps -auxww | grep -i postgr | wc -l
503
BETA -bash-4.2# lsof | grep -i postgr | wc -l
35225
BETA -bash-4.2# 

PostgresプロセスのUlimit。

BETA -bash-4.2# cat /proc/26230/limits 
Limit                     Soft Limit           Hard Limit           Units     
Max cpu time              unlimited            unlimited            seconds   
Max file size             unlimited            unlimited            bytes     
Max data size             unlimited            unlimited            bytes     
Max stack size            8388608              unlimited            bytes     
Max core file size        0                    unlimited            bytes     
Max resident set          unlimited            unlimited            bytes     
Max processes             256580               256580               processes 
Max open files            1024                 4096                 files     
Max locked memory         65536                65536                bytes     
Max address space         unlimited            unlimited            bytes     
Max file locks            unlimited            unlimited            locks     
Max pending signals       256580               256580               signals   
Max msgqueue size         819200               819200               bytes     
Max Nice priority         0                    0                    
Max realtime priority     0                    0                    
Max realtime timeout      unlimited            unlimited            us

Netstat

BETA -bash-4.2# netstat -plan | grep -i post | grep ESTABLISHED | wc -l
496
BETA -bash-4.2# 

Ulimit設定

BETA -bash-4.2# cat /etc/security/limits.d/postgres_limits.conf 
# Limits settings for postgres

postgres soft nofile 4096
postgres hard nofile 4096

postgres soft nproc 400
postgres hard nproc 400

Postgresを再起動した後、入ることができました。

Postgresユーザーのリソースutil。

BETA -bash-4.2# netstat -plan | grep -i post | grep ESTABLISHED | wc -l
1
BETA -bash-4.2# 

BETA -bash-4.2# lsof | grep -i postgr | wc -l
309
BETA -bash-4.2# ps -auxww | grep -i postgr | wc -l
8
BETA -bash-4.2#  
7
Chucks

Postgresを再起動するだけでは長期的な解決策ではありません。メモリなどのサーバー上の物理リソースの制約がない限り、再び限界に達します。この問題の間、postgresユーザーによって開かれたプロセス(nproc)の数は503で、開いているファイル(nofile)の推定数は35225でしたが、postgres_limits.confは、nprocを400だけに、nofileを4096だけに設定したことを示しています。データに基づいて、これらの2つのパラメーターを増やす必要があります。

8
Daniel t.