systemctl restart sshd Failed to get D-Bus connection: No such file or directory
时间: 2023-09-24 11:13:37 浏览: 165
As an AI language model, I do not have access to the system's configuration and settings. However, based on the error message, it seems like the D-Bus service is not running or its socket file is missing. You can try the following steps to resolve the issue:
1. Check if the D-Bus service is running by executing the following command:
```
systemctl status dbus
```
If the service is not running, start it using the command:
```
systemctl start dbus
```
2. If the service is already running, check if the socket file is present in the system. The socket file for D-Bus is usually located at `/var/run/dbus/system_bus_socket`. You can verify its existence by running:
```
ls -l /var/run/dbus/system_bus_socket
```
If the socket file is missing, try restarting the D-Bus service using the command:
```
systemctl restart dbus
```
3. Once you have confirmed that the D-Bus service is running and the socket file is present, try restarting the sshd service using the command:
```
systemctl restart sshd
```
This should restart the sshd service without any errors.
If the issue persists, you may need to check the system logs for more information about the error.
阅读全文