Pi洞在我的RPI上跑得很好。无论如何检查syslog,我每10秒就会看到一条返回消息。
Apr 19 22:25:50 pi-hole systemd[1]: Started Citadel web service.
Apr 19 22:25:50 pi-hole systemd[1426]: webcit-http.service: Failed to execute command: No such file or directory
Apr 19 22:25:50 pi-hole systemd[1426]: webcit-http.service: Failed at step EXEC spawning /usr/local/webcit/webcit: No such file or directory
Apr 19 22:25:50 pi-hole systemd[1]: webcit-https.service: Main process exited, code=exited, status=203/EXEC
Apr 19 22:25:50 pi-hole systemd[1]: webcit-https.service: Failed with result 'exit-code'.
Apr 19 22:25:50 pi-hole systemd[1]: webcit-http.service: Main process exited, code=exited, status=203/EXEC
Apr 19 22:25:50 pi-hole systemd[1]: webcit-http.service: Failed with result 'exit-code'.
Apr 19 22:25:54 pi-hole systemd[1]: webcit-https.service: Service RestartSec=3s expired, scheduling restart.
Apr 19 22:25:54 pi-hole systemd[1]: webcit-https.service: Scheduled restart job, restart counter is at 127.
Apr 19 22:25:54 pi-hole systemd[1]: webcit-http.service: Service RestartSec=3s expired, scheduling restart.
Apr 19 22:25:54 pi-hole systemd[1]: webcit-http.service: Scheduled restart job, restart counter is at 127.
Apr 19 22:25:54 pi-hole systemd[1]: Stopped Citadel web service.知道有什么问题吗?
发布于 2023-04-19 21:57:30
安装在您的Raspberry Pi上的Citadel web服务正在尝试启动webcit-http.service和webcit-https.service,但不能
如果您不需要它,只需禁用它
sudo systemctl disable --now webcit-http.service
sudo systemctl disable --now webcit-https.service如果你需要它,你可以重新安装它https://www.citadel.org/installing.html
https://serverfault.com/questions/1129113
复制相似问题