NGINX 在 Ubuntu 22 上安装失败

NGINX 在 Ubuntu 22 上安装失败

我正在尝试在 Ubuntu 22 上安装 NGINX,但是安装失败。

简而言之,运行 apt install nginx 后会发生以下情况:

chown: invalid group: ‘root:adm’

dpkg: error processing package nginx-common (--configure):
 installed nginx-common package post-installation script subprocess returned error exit status 1

dpkg: dependency problems prevent configuration of libnginx-mod-http-xslt-filter:
 libnginx-mod-http-xslt-filter depends on nginx-common (= 1.18.0-6ubuntu14.1); however:
  Package nginx-common is not configured yet.

我已在此处发布了完整的日志:https://privy.ninja/?8e46dc038517fa0e#8uwC1JwN9EbHufZxdt9RqJ94eGfzeSvUyvRWUkEJLPcJ

答案1

我修复此错误的方法。打开文件

~$ sudo nano /etc/group

并添加以下行

adm:x:4:syslog,suzy 

在 sys 组之后。

相关内容