You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I just upgraded notebook to 5.2.0 and tried _jupyter notebook stop 8888_, but got:
os.kill(server['pid'], signal.SIGTERM)
PermissionError: [WinError 5] Access is denied
My system is win10
I tried to run the cmd in admi mode, but still not worked.
Appreciate any helps.
Thanks!
The text was updated successfully, but these errors were encountered:
I think that feature may be written in a way that doesn't work at all on Windows. Sorry, most of the core developers use Linux & Mac systems.
We should change it to try requesting a shutdown using the shutdown HTTP endpoint first, and only resort to signals if it hasn't shut down in a few seconds.
takluyver
added a commit
to takluyver/notebook
that referenced
this issue
Oct 31, 2017
Signals don't work on Windows. This tries the HTTP shutdown request first.
On Unix, it will try SIGTERM after 5 seconds, and SIGKILL after another 5, if the
server didn't already exit.
Closesjupytergh-2937
Hi,
I just upgraded notebook to 5.2.0 and tried
_jupyter notebook stop 8888_
, but got:os.kill(server['pid'], signal.SIGTERM)
PermissionError: [WinError 5] Access is denied
My system is win10
I tried to run the cmd in admi mode, but still not worked.
Appreciate any helps.
Thanks!
The text was updated successfully, but these errors were encountered: