📜 TIL

terminate disconnect 차이

둥굴둥굴둥굴레차 2021. 7. 4. 11:00

 

terminate

주로 프로세스가 완전히 끝나지 않은 상태에서 종료하는 것을 말한다.
만약 PyCharm에서 terminate를 클릭했다면 파이썬 프로그램을 종료하고 PyCharm을 나오게 된다.

 

disconnect

서버 연결을 끝내거나 방해하는 것.
만약 PyCharm에서 disconnect를 클릭한다면 PyCharm은 파이썬 프로그램을 종료하지 않고 PyCharm을 나온다.
다시 실행했을 때 포트가 사용중인 불편한 상황을 만날 수 있다.

 

결론

 

특별한 상황이 아니라면 disconnect를 클릭하지 말자.

 

 

🔽 참고한 링크

 

What is the difference between terminate and disconnect when pycharm clicks the upper right corner to exit the program? (Don't u

As shown in the figure, pycharm points in the upper right corner × when exiting, it will prompt, choose to terminate or disconnect, what is the difference between the two? After testing When you click terminate, python will terminate the python program, a

www.programmersought.com

 

IntelliJ, PyCharm, Webstore 등을 종료할 때 terminate와 disconnect 차이

terminate는 돌아가고 있는 프로세스를 강제로 종료하고 끄고, disconnect는 프로세스 그대로 두고 종료한다. 별 생각 없이 disconnect하면 다시 실행했을 때 포트가 사용중인 불편한 상황을 만날 수 있

snippets-save-us.tistory.com