1. 程式人生 > >nginx啟動使用者和nginx工作使用者要一致

nginx啟動使用者和nginx工作使用者要一致

[[email protected] default]# ps aux | grep "nginx: worker process" | awk '{print $1}'
root
root
root
root
root

[[email protected] default]# vi /etc/nginx/nginx.conf

user root root;                # 這個使用者要和上面的使用者保持一致
worker_processes auto;

worker_rlimit_nofile 51200;