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
In my case, I need port 9000-10000 to be reserved. These ports may be not used now but may be used in the future. Now jupyter uses 9000 as start port. It's very likely to occupy a port in 9000-10000 and later my other application would failed because of "port is already in use".
Discussed in #10761
Originally posted by ladyrick July 11, 2022
KernelLauncher.computeStartPortsupport different start port instead of a magic number9000:https://github.dev/microsoft/vscode-jupyter/blob/be3667521cf217753b343c7483c128b34dd5d213/src/kernels/raw/launcher/kernelLauncher.node.ts#L99
In my case, I need port 9000-10000 to be reserved. These ports may be not used now but may be used in the future. Now jupyter uses 9000 as start port. It's very likely to occupy a port in 9000-10000 and later my other application would failed because of "port is already in use".