Shut Down Quickly - A stop job is running

16,844

I have used systemd for 5 months. Sometimes I get this problem. To reduce the delay from the default value 90s (1min30s), it is in the /etc/systemd/system.conf file:

#DefaultTimeoutStartSec=90s
#DefaultTimeoutStopSec=90s

Uncomment these line and change to any value you want. This solution just reduce time you have to wait. You should check your virtualbox daemon.

Second solution is install watchdog and enable it. It works for many people but it not works for me.

P/s: If you want to force poweroff. Let have a look at systemctl manpage.

Share:
16,844

Related videos on Youtube

Programster
Author by

Programster

Updated on September 18, 2022

Comments

  • Programster
    Programster over 1 year

    In systemd based systems, such as debian 8 and ubuntu 16.04, I have this issue whereby the machine will refuse to shut down if I forgot to stop my openvpn connection before sending the command to shut down.

    enter image description here

    The command I use to start my openvpn connection is:

    sudo openvpn --config client.conf --script-security 2
    

    Is there a way I can change the command so systemd knows that it's okay to terminate it more quickly when the system is shutting down? Perhaps the alternative is to change systemd's timeout period to be much shorter? I would rather avoid any type of aliasing of my poweroff, halt, reboot, and shutdown commands.

  • Programster
    Programster almost 8 years
    So there is no way to make the process automatically killable by systemd on shutdown, such as by backgrounding it or setting a priority or something?
  • thangdc94
    thangdc94 almost 8 years
    you should have a look at systemctl poweroff. Man page provides something interesting. It maybe discouragement.
  • Programster
    Programster over 7 years
    The problem is a STOP job, not a start job.