Ubuntu

以非 root 使用者身份執行 nginx

  • June 18, 2017

我按照這個過程在我的 Ubuntu 10.04 Lucid 伺服器上安裝 nginx http://library.linode.com/web-servers/nginx/installation/ubuntu-10.04-lucid

在創建一個初始化腳本來啟動 nginx,然後呼叫 /etc/init.d/nginx start 之後,我迷路了。當我這樣做時,我收到以下錯誤:

Starting nginx_main: Starting /opt/nginx/sbin/nginx...
nginx: [alert] could not open error log file: open() "/opt/nginx/logs/error.log" failed (13: Permission denied)
2012/03/16 18:17:27 [emerg] 859#0: open() "/opt/nginx/logs/access.log" failed (13: Permission denied)

我可以執行它的唯一方法是,如果我使用sudo它並且它以 執行程序root,這是我不想要的。

我已經chown創建了整個目錄 ( chown -R nginx:nginx /opt/nginx),並且我也創建chmod -R 755了該目錄。

按照 CS3 的建議添加user指令也給了我這個錯誤,但有一個額外的行。

Starting nginx_main: Starting /opt/nginx/sbin/nginx...
nginx: [alert] could not open error log file: open() "/opt/nginx/logs/error.log" failed (13: Permission denied)
2012/03/16 18:48:34 [warn] 1606#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /opt/nginx/conf/nginx.conf:2
2012/03/16 18:48:34 [emerg] 1606#0: open() "/opt/nginx/logs/access.log" failed (13: Permission denied)

有任何想法嗎?

首先,應該執行初始化腳本

sudo /etc/init.d/name

當您沒有以 root 身份登錄時(當登錄使用者啟用 sudo 時)

其次,當您執行 sudo /etc/init.d/nginx start ==> 時,它將主 nginx 程序作為 root 和工作程序作為您在 nginx.conf 使用者指令中指定的使用者(例如 www-data)

您能否在發出 sudo /etc/init.d/nginx start 時確認您在 nginx 下的所有程序是否由 root 執行?

ps aux | grep [n]ginx

例如。

在此處輸入圖像描述

建議:Ubuntu 10.04 LTS 擁有來自 nginx 團隊的優秀 ubuntu 包支持。那麼,如果您不需要 nginx 中的自定義模組,為什麼還要從原始碼安裝呢?

在這裡諮詢

二進制包已經帶有非常需要的模組

nginx version: nginx/1.0.12
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_realip_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.0.12/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.0.12/debian/modules/nginx-upstream-fair

引用自:https://serverfault.com/questions/370337