Equivalent of ctrl c in command to cancel a program

前端 未结 6 1963
渐次进展
渐次进展 2020-12-24 00:29

I am running a long linux program in a remote machine, and I want to stop it, but my problem is that if I use the kill command then the program will exit without saving resu

相关标签:
6条回答
  • 2020-12-24 00:39

    Try:

    kill -SIGINT processPIDHere
    

    Basically Ctrl C sends the SIGINT (interrupt) signal while kill sends the SIGTERM (termination) signal by default unless you specify the signal to send.

    0 讨论(0)
  • 2020-12-24 00:39

    ctrl c just sends a SIGINT signal, but there is some other signals that is a little more soft. http://www.gnu.org/software/libtool/manual/libc/Termination-Signals.html

    I think that you can use the the kill command to send some other signal. (see man kill for more info)

    0 讨论(0)
  • 2020-12-24 00:47

    Here's an example for mongod

    To start the daemon from the command line:

    mongod &
    

    Then later

    kill -SIGINT `pgrep mongod`
    
    0 讨论(0)
  • 2020-12-24 00:49

    If you control the long-running remote process, you could install a signal handler for SIGTERM (see man signal and man sigaction and the many SO questions on this topic), to cleanup nicely before dieing.

    That is a very common thing to do.

    0 讨论(0)
  • 2020-12-24 00:50

    Keep in mind as well in your signal handler, that it is like an interrupt handler in that you are very limited as to what you are allowed to do in it without corrupting the rest of your program. The best thing you can do here is set an atomic_t "should_quit" variable.

    0 讨论(0)
  • 2020-12-24 00:54

    I am doing as below way

    killall -2 <ProgramName>
    

    or

    kill -2 <PID of your process>
    

    I used to forget the the name of signal. i.e SIGINT/SIGKILL here so i am using number for that like killall -2 or killall -9

    0 讨论(0)
提交回复
热议问题