--error-log-path=/var/log/nginx/error.log: 没有那个文件或目录
时间: 2023-11-29 13:06:13 浏览: 151
这个错误通常意味着你的 Nginx 配置文件中指定了一个不存在的错误日志路径。你需要检查你的 Nginx 配置文件,找到 `error_log` 指令并确认路径是否正确。
如果路径是正确的,那么可能是权限问题导致 Nginx 无法写入日志文件。你可以尝试使用 `sudo` 命令以管理员身份运行 Nginx,或者检查日志文件的所属用户和权限设置是否正确。
相关问题
配置nginx路径时出现以下错误该怎么解决 [root@yfs01 nginx]# --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_gzip_static_module -bash: --error-log-path=/var/log/nginx/error.log: 没有那个文件或目录 [root@yfs01 nginx]# --http-client-body-temp-path=/var/temp/nginx/client --http-proxy-temp-path=/var/temp/nginx/proxy -bash: --http-client-body-temp-path=/var/temp/nginx/client: 没有那个文件或目录 [root@yfs01 nginx]# --http-fastcgi-temp-path=/var/temp/nginx/fastcgi --http-uwsgi-temp-path=/var/temp/nginx/uwsgi --http-scgi-temp-path=/var/temp/nginx/scgi --conf-path=/usr/local/nginx/nginx.conf
这个问题是因为您在执行配置 `./configure` 命令时,没有将配置选项和 `./configure` 命令分开。请在执行 `./configure` 命令之前将配置选项和命令分开,例如:
```
./configure --prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi \
--conf-path=/usr/local/nginx/nginx.conf
```
这样,您就可以通过单独的行来设置每个配置选项,而不会出现 `-bash: --error-log-path=/var/log/nginx/error.log: 没有那个文件或目录` 这样的错误信息。
配置nginx 路径时,出现这个错误该怎么解决?[root@yfs01 nginx]# --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_gzip_static_module -bash: --error-log-path=/var/log/nginx/error.log: 没有那个文件或目录 [root@yfs01 nginx]# --http-client-body-temp-path=/var/temp/nginx/client --http-proxy-temp-path=/var/temp/nginx/proxy -bash: --http-client-body-temp-path=/var/temp/nginx/client: 没有那个文件或目录 [root@yfs01 nginx]# --http-fastcgi-temp-path=/var/temp/nginx/fastcgi --http-uwsgi-temp-path=/var/temp/nginx/uwsgi --http-scgi-temp-path=/var/temp/nginx/scgi --conf-path=/usr/local/nginx/nginx.conf
这个错误是因为您在命令行中输入了配置选项,但是缺少了nginx的可执行文件路径,您需要在命令行中添加nginx的可执行文件路径,例如:
```
/usr/local/nginx/sbin/nginx --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_gzip_static_module --http-client-body-temp-path=/var/temp/nginx/client --http-proxy-temp-path=/var/temp/nginx/proxy --http-fastcgi-temp-path=/var/temp/nginx/fastcgi --http-uwsgi-temp-path=/var/temp/nginx/uwsgi --http-scgi-temp-path=/var/temp/nginx/scgi --conf-path=/usr/local/nginx/nginx.conf
```
请注意,上述命令中的`/usr/local/nginx/sbin/nginx`是您的nginx可执行文件路径。
阅读全文