You are viewing a single thread.
View all comments 42 points
*
[ *] (3 of 3) A stop job is running for User Manager for UID 1000... (1m12s / 3m)
17 points
30 points
*
# nano /etc/systemd/{system,user}.conf
----
DefaultTimeoutStopSec=10s
You’re welcome.
12 points
1 point
2 points
2 points
5 points
Systemd is trying to stop a service. To do an action to a service (or any unit), it runs a job. The job to stop a service is called a stop job. Once the stop job is taken off the job queue, the stop job is running.
The method of stopping a service is configurable, but the default is to send a kill signal to the MainPID, then wait for the process to exit. If it doesn’t, after a timeout, the kill is reattempted with a harsher signal.