ちゃんと覚えておけよ?

忘れちゃいけない事のメモ、覚え書き

nginx.confのチューンナップ

# プロセス毎に読み込むファイル(ファイルディスクリプタ)の上限数
worker_rlimit_nofile  8192;

# プロセス毎の同時に接続できる上限数

events {
     worker_connections  4096;
}

/etc/sysctl.conf
# ファイルディスクリプタの制限の数値

fs.file-max = 655360

/etc/security/limits.conf

nginx       soft    nofile   10000
nginx       hard    nofile  30000

設定値を反映

sysctl -p

確認

ps -eo user,pid,comm | grep nginx

Comment

*