Fail connect remote jupyter notebook server possibly caused by chrome install Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Create multiple aliases for localhost addresses on different portsServer with GUI, can't get elevated privileges with Chrome Remote DesktopStill apache page running after configuring nginx?How to connect to Ubuntu Server 16.04 from Chrome Browser?A certain ufw rule doesn't work after rebootUnble to Access Ubuntu Through GUIHow to install jupyter notebookRunning jupyter notebook on a remote server that is behind a bastion server on a local computerTwo jupyter notebook running at the same portThe port 8888 is already in use
What is the font for "b" letter?
How often does castling occur in grandmaster games?
Effects on objects due to a brief relocation of massive amounts of mass
How to react to hostile behavior from a senior developer?
Why aren't air breathing engines used as small first stages?
Significance of Cersei's obsession with elephants?
How do I use the new nonlinear finite element in Mathematica 12 for this equation?
How does the math work when buying airline miles?
What is this clumpy 20-30cm high yellow-flowered plant?
Question about debouncing - delay of state change
SF book about people trapped in a series of worlds they imagine
Selecting user stories during sprint planning
Is there a kind of relay only consumes power when switching?
What would you call this weird metallic apparatus that allows you to lift people?
Is it fair for a professor to grade us on the possession of past papers?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Illegal assignment from sObject to Id
What do you call the main part of a joke?
Is there any word for a place full of confusion?
How would a mousetrap for use in space work?
Would the Life Transference spell be unbalanced if it ignored resistance and immunity?
Putting class ranking in CV, but against dept guidelines
ArcGIS Pro Python arcpy.CreatePersonalGDB_management
How do living politicians protect their readily obtainable signatures from misuse?
Fail connect remote jupyter notebook server possibly caused by chrome install
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Create multiple aliases for localhost addresses on different portsServer with GUI, can't get elevated privileges with Chrome Remote DesktopStill apache page running after configuring nginx?How to connect to Ubuntu Server 16.04 from Chrome Browser?A certain ufw rule doesn't work after rebootUnble to Access Ubuntu Through GUIHow to install jupyter notebookRunning jupyter notebook on a remote server that is behind a bastion server on a local computerTwo jupyter notebook running at the same portThe port 8888 is already in use
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to connect to jupyter notebook running on my remote server. The code below has been working fine for days to forward the jupyter notebook running on the port on my ubuntu server to my mac. It stopped recently.
It seemed to stop around the time I tried installing chrome on my ubuntu server along with chromedriver so I could use it with selenium. I’m not sure if they’re related or not. The post related to issues I was having with chrome and crhomedriver, and what I tried to do on ubuntu to resolve them are below:
https://stackoverflow.com/questions/55681005/chrome-fails-on-ubuntu-server-with-selenium?noredirect=1#comment98046496_55681005
and the past post I have related to the jupyter notebook issue is below:
https://stackoverflow.com/questions/55700615/connection-failed-to-remote-jupyter-notebook
Does anyone know what the issue might be? And can you suggest a fix? Also is there a way to just open the port for jupyter notebook so I wouldn't need to use
ssh -L 8000:localhost:8888 username@111.111.11.122
At work when we connect to jupyter notebook running on remote server we’d just type “servername:8889” into the web browser. Since we were on the same network it would connect.
Also recently I tried shutting down and restarting my ubuntu server but it didn't fix anything, still can't connect remotely to the jupyter notebook server.
Ubuntu code:
ssh -L 8000:localhost:8888 username@111.111.11.122
Ubuntu code:
jupyter notebook --no-browser --port=8888
Message:
WARNING: The conda.compat module is deprecated and will be removed in a future release.
[I 14:11:23.334 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found
[I 14:11:23.343 NotebookApp] Writing notebook server cookie secret to /run/user/1000/jupyter/notebook_cookie_secret
[I 14:11:24.175 NotebookApp] Serving notebooks from local directory: /home/username
[I 14:11:24.175 NotebookApp] The Jupyter Notebook is running at:
[I 14:11:24.175 NotebookApp] http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
[I 14:11:24.175 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:11:24.178 NotebookApp]
To access the notebook, open this file in a browser:
file:///run/user/1000/jupyter/nbserver-77790-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
server google-chrome python3 jupyter selenium
New contributor
add a comment |
I'm trying to connect to jupyter notebook running on my remote server. The code below has been working fine for days to forward the jupyter notebook running on the port on my ubuntu server to my mac. It stopped recently.
It seemed to stop around the time I tried installing chrome on my ubuntu server along with chromedriver so I could use it with selenium. I’m not sure if they’re related or not. The post related to issues I was having with chrome and crhomedriver, and what I tried to do on ubuntu to resolve them are below:
https://stackoverflow.com/questions/55681005/chrome-fails-on-ubuntu-server-with-selenium?noredirect=1#comment98046496_55681005
and the past post I have related to the jupyter notebook issue is below:
https://stackoverflow.com/questions/55700615/connection-failed-to-remote-jupyter-notebook
Does anyone know what the issue might be? And can you suggest a fix? Also is there a way to just open the port for jupyter notebook so I wouldn't need to use
ssh -L 8000:localhost:8888 username@111.111.11.122
At work when we connect to jupyter notebook running on remote server we’d just type “servername:8889” into the web browser. Since we were on the same network it would connect.
Also recently I tried shutting down and restarting my ubuntu server but it didn't fix anything, still can't connect remotely to the jupyter notebook server.
Ubuntu code:
ssh -L 8000:localhost:8888 username@111.111.11.122
Ubuntu code:
jupyter notebook --no-browser --port=8888
Message:
WARNING: The conda.compat module is deprecated and will be removed in a future release.
[I 14:11:23.334 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found
[I 14:11:23.343 NotebookApp] Writing notebook server cookie secret to /run/user/1000/jupyter/notebook_cookie_secret
[I 14:11:24.175 NotebookApp] Serving notebooks from local directory: /home/username
[I 14:11:24.175 NotebookApp] The Jupyter Notebook is running at:
[I 14:11:24.175 NotebookApp] http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
[I 14:11:24.175 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:11:24.178 NotebookApp]
To access the notebook, open this file in a browser:
file:///run/user/1000/jupyter/nbserver-77790-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
server google-chrome python3 jupyter selenium
New contributor
add a comment |
I'm trying to connect to jupyter notebook running on my remote server. The code below has been working fine for days to forward the jupyter notebook running on the port on my ubuntu server to my mac. It stopped recently.
It seemed to stop around the time I tried installing chrome on my ubuntu server along with chromedriver so I could use it with selenium. I’m not sure if they’re related or not. The post related to issues I was having with chrome and crhomedriver, and what I tried to do on ubuntu to resolve them are below:
https://stackoverflow.com/questions/55681005/chrome-fails-on-ubuntu-server-with-selenium?noredirect=1#comment98046496_55681005
and the past post I have related to the jupyter notebook issue is below:
https://stackoverflow.com/questions/55700615/connection-failed-to-remote-jupyter-notebook
Does anyone know what the issue might be? And can you suggest a fix? Also is there a way to just open the port for jupyter notebook so I wouldn't need to use
ssh -L 8000:localhost:8888 username@111.111.11.122
At work when we connect to jupyter notebook running on remote server we’d just type “servername:8889” into the web browser. Since we were on the same network it would connect.
Also recently I tried shutting down and restarting my ubuntu server but it didn't fix anything, still can't connect remotely to the jupyter notebook server.
Ubuntu code:
ssh -L 8000:localhost:8888 username@111.111.11.122
Ubuntu code:
jupyter notebook --no-browser --port=8888
Message:
WARNING: The conda.compat module is deprecated and will be removed in a future release.
[I 14:11:23.334 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found
[I 14:11:23.343 NotebookApp] Writing notebook server cookie secret to /run/user/1000/jupyter/notebook_cookie_secret
[I 14:11:24.175 NotebookApp] Serving notebooks from local directory: /home/username
[I 14:11:24.175 NotebookApp] The Jupyter Notebook is running at:
[I 14:11:24.175 NotebookApp] http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
[I 14:11:24.175 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:11:24.178 NotebookApp]
To access the notebook, open this file in a browser:
file:///run/user/1000/jupyter/nbserver-77790-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
server google-chrome python3 jupyter selenium
New contributor
I'm trying to connect to jupyter notebook running on my remote server. The code below has been working fine for days to forward the jupyter notebook running on the port on my ubuntu server to my mac. It stopped recently.
It seemed to stop around the time I tried installing chrome on my ubuntu server along with chromedriver so I could use it with selenium. I’m not sure if they’re related or not. The post related to issues I was having with chrome and crhomedriver, and what I tried to do on ubuntu to resolve them are below:
https://stackoverflow.com/questions/55681005/chrome-fails-on-ubuntu-server-with-selenium?noredirect=1#comment98046496_55681005
and the past post I have related to the jupyter notebook issue is below:
https://stackoverflow.com/questions/55700615/connection-failed-to-remote-jupyter-notebook
Does anyone know what the issue might be? And can you suggest a fix? Also is there a way to just open the port for jupyter notebook so I wouldn't need to use
ssh -L 8000:localhost:8888 username@111.111.11.122
At work when we connect to jupyter notebook running on remote server we’d just type “servername:8889” into the web browser. Since we were on the same network it would connect.
Also recently I tried shutting down and restarting my ubuntu server but it didn't fix anything, still can't connect remotely to the jupyter notebook server.
Ubuntu code:
ssh -L 8000:localhost:8888 username@111.111.11.122
Ubuntu code:
jupyter notebook --no-browser --port=8888
Message:
WARNING: The conda.compat module is deprecated and will be removed in a future release.
[I 14:11:23.334 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found
[I 14:11:23.343 NotebookApp] Writing notebook server cookie secret to /run/user/1000/jupyter/notebook_cookie_secret
[I 14:11:24.175 NotebookApp] Serving notebooks from local directory: /home/username
[I 14:11:24.175 NotebookApp] The Jupyter Notebook is running at:
[I 14:11:24.175 NotebookApp] http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
[I 14:11:24.175 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:11:24.178 NotebookApp]
To access the notebook, open this file in a browser:
file:///run/user/1000/jupyter/nbserver-77790-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=d111b8540568567c80796a3be5cf53229fe38360b411a4dd
server google-chrome python3 jupyter selenium
server google-chrome python3 jupyter selenium
New contributor
New contributor
New contributor
asked 18 mins ago
user3476463user3476463
101
101
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
user3476463 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1135098%2ffail-connect-remote-jupyter-notebook-server-possibly-caused-by-chrome-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
user3476463 is a new contributor. Be nice, and check out our Code of Conduct.
user3476463 is a new contributor. Be nice, and check out our Code of Conduct.
user3476463 is a new contributor. Be nice, and check out our Code of Conduct.
user3476463 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1135098%2ffail-connect-remote-jupyter-notebook-server-possibly-caused-by-chrome-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown