如何解决 chown: 启动 apache 服务器时用户无效?
How to resolve chown: invalid user while starting apache server?
我正在尝试通过 运行-
启动 apache2 服务
sudo service apache2 start
但它导致-
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
我试过了-
sudo systemctl status apache2.service
它正在显示-
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Tue 2020-12-08 11:17:18 IST; 7min ago
Docs: https://httpd.apache.org/docs/2.4/
Process: 30529 ExecStart=/usr/sbin/apachectl start (code=exited, status=1/FAILURE)
Dec 08 11:17:18 dk systemd[1]: Starting The Apache HTTP Server...
Dec 08 11:17:18 dk apachectl[30535]: chown: invalid user: 'dk'
Dec 08 11:17:18 dk systemd[1]: apache2.service: Control process exited, code=exited, status=1/FAILURE
Dec 08 11:17:18 dk systemd[1]: apache2.service: Failed with result 'exit-code'.
Dec 08 11:17:18 dk systemd[1]: Failed to start The Apache HTTP Server.
我假设问题出在无效用户:dk。我该如何解决这个问题?
我最近还删除了一个已经安装了 LAMP 堆栈的用户帐户。这就是它显示无效用户的原因吗?
您必须在文件中看到:
/etc/apache2/apache2.conf
要么
/etc/apache2/httpd.conf
- 输入的用户是什么组
通常是:
User www-data
Group www-data
或者您的情况可能是“dk”
此外,您可能在服务器文件中指定站点位置位于“dk”拥有的目录中。
使用以下命令检查服务器配置:
apachectl configtest
或
sudo apachectl configtest
在新系统中,例如ubuntu 20 * LTS,配置文件为/etc/apache2/envvars
寻找 APACHE_RUN_USER 和 APACHE_RUN_GROUP。
我正在尝试通过 运行-
启动 apache2 服务sudo service apache2 start
但它导致-
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
我试过了-
sudo systemctl status apache2.service
它正在显示-
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Tue 2020-12-08 11:17:18 IST; 7min ago
Docs: https://httpd.apache.org/docs/2.4/
Process: 30529 ExecStart=/usr/sbin/apachectl start (code=exited, status=1/FAILURE)
Dec 08 11:17:18 dk systemd[1]: Starting The Apache HTTP Server...
Dec 08 11:17:18 dk apachectl[30535]: chown: invalid user: 'dk'
Dec 08 11:17:18 dk systemd[1]: apache2.service: Control process exited, code=exited, status=1/FAILURE
Dec 08 11:17:18 dk systemd[1]: apache2.service: Failed with result 'exit-code'.
Dec 08 11:17:18 dk systemd[1]: Failed to start The Apache HTTP Server.
我假设问题出在无效用户:dk。我该如何解决这个问题? 我最近还删除了一个已经安装了 LAMP 堆栈的用户帐户。这就是它显示无效用户的原因吗?
您必须在文件中看到:
/etc/apache2/apache2.conf
要么
/etc/apache2/httpd.conf
- 输入的用户是什么组
通常是:
User www-data
Group www-data
或者您的情况可能是“dk”
此外,您可能在服务器文件中指定站点位置位于“dk”拥有的目录中。
使用以下命令检查服务器配置:
apachectl configtest
或
sudo apachectl configtest
在新系统中,例如ubuntu 20 * LTS,配置文件为/etc/apache2/envvars
寻找 APACHE_RUN_USER 和 APACHE_RUN_GROUP。