centos 7启动出现Authorization not available . check if polkit service is running or see debug message for more information .welcome too emergency mode ! after loggin in type "jour"
时间: 2024-01-17 11:04:18 浏览: 422
centos7启动服务uthorization not available. Check if polkit service is running or see debug message for
5星 · 资源好评率100%
这个错误提示意味着系统没有找到 polkit 服务,导致认证失败,因此系统进入了紧急模式。polkit 是一个系统服务,提供了授权和认证功能,许多程序需要使用该服务来获取授权。你可以按照以下步骤来解决该问题:
1. 在紧急模式下登录系统,输入用户名和密码。
2. 运行以下命令来检查 polkit 服务是否正在运行:
```
systemctl status polkit
```
如果该服务没有运行,你可以运行以下命令来启动它:
```
systemctl start polkit
```
3. 如果 polkit 服务已经在运行,你可以运行以下命令来重新加载它:
```
systemctl reload polkit
```
4. 如果你无法启动或重新加载 polkit 服务,你可以尝试重启系统,或者查看日志以获取更多信息:
```
journalctl -xe
```
这将显示系统日志,你可以从中找到有关 polkit 服务的错误消息,以便更好地理解问题的原因。
阅读全文