目录
- 一、错误提示 nginx: [emerg] getgrnam("nogroup") failed
- 二、解决办法
- 三、测试
一、错误提示 nginx: [emerg] getgrnam(“nogroup”) failed
nginx 交叉编译,在开发板上启动报错
nginx: [emerg] getgrnam("nogroup") failed
二、解决办法
查看用户
//To see your username, execute following command:whoami
//To see your group name, execute following command:id -g -n $whoami
修改 nginx/conf 文件夹下的 nginx.conf 文件。
将
#user nobody;
修改后
user root;
修改前:
修改后:
三、测试
修改后重新启动nginx,使用ps查看进程是否启动
ps
浏览器输入地址,可看到效果
参考
https://blog.csdn.net/weixin_43793181/article/details/116500392
https://serverfault.com/questions/742482/getgrnamuser-failed-in-etc-nginx-nginx-conf