Fail connect remote jupyter notebook server possibly caused by chrome install Announcing the...
Illegal assignment from sObject to Id
Is there hard evidence that the grant peer review system performs significantly better than random?
An adverb for when you're not exaggerating
Dating a Former Employee
How were pictures turned from film to a big picture in a picture frame before digital scanning?
Why is my ESD wriststrap failing with nitrile gloves on?
How to install press fit bottom bracket into new frame
What is this clumpy 20-30cm high yellow-flowered plant?
What is the difference between globalisation and imperialism?
How fail-safe is nr as stop bytes?
Trademark violation for app?
AppleTVs create a chatty alternate WiFi network
Sum letters are not two different
Is it fair for a professor to grade us on the possession of past papers?
How much damage would a cupful of neutron star matter do to the Earth?
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
What was the first language to use conditional keywords?
Why weren't discrete x86 CPUs ever used in game hardware?
Drawing without replacement: why is the order of draw irrelevant?
Why is Nikon 1.4g better when Nikon 1.8g is sharper?
Do any jurisdictions seriously consider reclassifying social media websites as publishers?
Can a new player join a group only when a new campaign starts?
How do I use the new nonlinear finite element in Mathematica 12 for this equation?
Time to Settle Down!
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 17 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