Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ / WebStorm - Terminate vs Disconnect

Running a node.js process (not sure it is relevant).

When I stop a process I get the following dialog:

enter image description here

What is the difference between Terminate and Disconnect?

like image 914
chenop Avatar asked Sep 01 '18 08:09

chenop


People also ask

How do I terminate in Intellij?

You can run a process with ⌃R (macOS), or Shift+F10 (Windows/Linux). To stop a process, you can use ⌘F2 on macOS, or Ctrl+F2 on Windows/Linux.

How do I turn off background process in Intellij?

Click the Stop button from the top bar. It will pop open a menu listing all processes. (The stop button at the side of the debug window is per-process, as in your screenshot.) Hover over the first process, hold Shift , and then click on the last process.


1 Answers

Terminate causes the running process(es) to stop; Disconnect keeps the process running, but the IDE (debugger, etc.) will no more be attached to it. See https://www.jetbrains.com/help/webstorm/2018.2/system-settings.html, On Closing Tool Windows with Running Process

like image 53
lena Avatar answered Sep 18 '22 12:09

lena