systemctl start kubelet Authorization not available. Check if polkit service is running or see debug message for more information.
时间: 2024-01-17 19:04:14 浏览: 209
centos7启动服务uthorization not available. Check if polkit service is running or see debug message for
5星 · 资源好评率100%
运行命令`systemctl start kubelet`时,如果出现报错信息`Authorization not available. Check if polkit service is running or see debug message for more information.`,这是因为缺少权限导致的。解决方法如下:
1. 确认polkit服务是否正在运行。可以通过运行命令`systemctl status polkit`来检查polkit服务的状态。如果服务未运行,则需要启动服务,可以通过运行命令`systemctl start polkit`来启动服务。
2. 确认当前用户是否具有足够的权限来运行`systemctl start kubelet`命令。如果当前用户没有足够的权限,则需要使用具有足够权限的用户来运行该命令。
3. 如果以上两个方法都无法解决问题,则需要查看系统日志以获取更多信息。可以通过运行命令`journalctl -xe`来查看系统日志。
阅读全文