我已经在 debian(jessie v8.2) 系统上从源代码编译了 nginx v1.9.6。但它没有按预期工作。1.9.3版本没有任何问题。
当我尝试运行时,service nginx start
我收到此消息:
nginx.service 启动失败:单元 nginx.service 加载失败:没有这样的文件或目录。
我使用这些参数进行配置:
配置参数: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/ nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx。锁定 --user=myuser --group=myuser --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --with-http_ssl_module --with-http_v2_module --with-file-aio --with-ipv6 --没有-http_memcached_module
如果你得到错误信息
Failed to start nginx.service: Unit nginx.service failed to load: No such file or directory.
systemd
还没有找到一个unit file
.从源代码安装未提供单元文件。您需要像这样为 nginx 创建一个单元文件。
调整安装路径并将文件存储在
/lib/systemd/system/nginx.service
. 您需要运行systemctl daemon-reload
以重新加载 systemd。查看官方文档以获取更多信息。