systemctl状态显示:“状态:降级”


24

当我跑步时systemctl status,我到达State: degraded了顶部,

● x230
    State: degraded
     Jobs: 0 queued
   Failed: 1 units
    Since: Wed 2018-05-30 17:09:49 CDT; 3 days ago
  ....

发生了什么,该如何解决?

Answers:


37

这意味着您的某些服务无法启动。如果systemctl;不带status参数运行就可以看到它们。

他们应该表现出类似的东西,

loaded failed failed

或者,您可以使用systemctl --failed来显示失败的服务

  UNIT                        LOAD   ACTIVE SUB    DESCRIPTION                
● postgresql@9.4-main.service loaded failed failed PostgreSQL Cluster 9.4-main

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

3

您也可以尝试:

sudo systemctl reset-failed

systemd重置失败正在清除失败的单元。您可以使用systemctl reset-failed命令手动清除故障单元。可以对所有单元或一个单元执行此操作。不再需要的服务最好停止和禁用。


5
对该命令的作用做更多的解释会很好。有什么后果?有数据丢失等风险
吗?

1

要更简洁地回答原始问题:

systemctl | grep fail


3
为了使之成为一个实际的答案,您可能应该在此命令的输出中(最好是带有示例)解释这样做的目的以及他们应该查看的内容。
库萨兰达

0

为了解决这个问题,我使用类似以下的命令重新启动了失败的服务:

sudo systemctl restart postgresql@9.4-main.service

但是,它不适用于诸如systemd-initctl.service之类的服务。再次拔出并插入树莓派对我有用,但是我建议尝试手动重新启动服务。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.