You are not logged in.
Pages: 1
So, I don't know since when but most systemctl commands are failing to execute... I've searched for answers and found no answer...
user@quad-srv ~ % sudo systemctl status nginx -l
Failed to get properties: Connection timed out
user@quad-srv ~ % sudo systemctl restart sshd
Failed to restart sshd.service: Activation of org.freedesktop.systemd1 timed out
Any ideas..?
Offline
If you're not on 210-3, update.
Offline
warning: systemd-210-3 is up to date -- reinstalling
Offline
Not a Sysadmin issue, moving to NC...
Offline
Have you rebooted since updating systemd?
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
Yes I have
Offline
user@quad-srv ~ % sudo lsof /run/dbus/system_bus_socket
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
dbus-daem 262 dbus 3u unix 0xffff880233308700 0t0 9496 /run/dbus/system_bus_socket
I also noticed that I have more than 30 000 processes showing up as 'sshd' running by user 'nobody', log files are huge but unreadable...
Last edited by Seditio (2014-03-08 20:22:12)
Offline
Fixed by multiple hard reboots...
Offline
log files are huge but unreadable...
you have to use journalctl to read them
sudo journalctl
it's pretty handy though, for instance
sudo journalctl -b 0 -u sshd
displays your logs only since last boot for only 'sshd' type events
Offline
user@quad-srv ~ % sudo lsof /run/dbus/system_bus_socket
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
dbus-daem 262 dbus 3u unix 0xffff880233308700 0t0 9496 /run/dbus/system_bus_socket
DBus was obviously starting but it's systemd should have been listed there as well (systemd opens the socket and then passes it to dbus). Glad it's fixed but it's still really odd...
Offline
Pages: 1