El problema
Los errores de inicio de los servicios ssh y los mensajes de cola relacionados con el servicio polkit.
# service sshd restart Redirecting to /bin/systemctl restart sshd.service Authorization not available. Check if polkit service is running or see debug message for more information.
Se encuentra el mismo problema al iniciar el servicio polkit.
# service polkit restart Redirecting to /bin/systemctl restart polkit.service Authorization not available. Check if polkit service is running or see debug message for more information.
La solución
El enlace simbólico entre /run , /ejecutar/bloquear a /var/ejecutar , /var/bloqueo respectivamente, lo que hace que el servicio no se ejecute correctamente.
Restaure el enlace simbólico entre /run y /run/lock a /var/run y /var/lock siguiendo los siguientes pasos:
1. Haga una copia de seguridad de /var/run:
# mv /var/run /var/run.old # mv /var/lock /var/lock.old
2. Vuelva a crear el enlace simbólico:
# ln -s /run /var/ # ln -s /run/lock /var/
4. Verifique si se ha creado el enlace:
# ls -l /var/run # ls -l /var/lock
Salida esperada:
$ ls -l /var/run lrwxrwxrwx. 1 root root 6 May 11 2016 /var/run -> ../run
$ ls -l /var/lock lrwxrwxrwx. 1 root root 11 May 11 2016 /var/lock -> ../run/lock
5. Sincroniza los cambios:
# sync; sync
6. Reinicie el servidor:
# reboot