Anaconda ipython laptop does not start in server settings

I am trying to install Anaconda on Terminal.com. I followed the instructions on the site: https://gist.github.com/iamatypeofwalrus/5183133

Installation was successful. I can login in python by typing ipython on the terminal. But when I entered $ ipython notebook

I got the following error message on terminal

[I 10:35:24.760 NotebookApp] Using existing profile dir: u'/root/.ipython/profile_default'
[I 10:35:24.872 NotebookApp] Using MathJax from CDN: https://cdn.mathjax.org/mathjax/latest
/MathJax.js
[I 10:35:24.891 NotebookApp] The port 8888 is already in use, trying another random port.
Traceback (most recent call last):
  File "/root/anaconda/bin/ipython", line 6, in <module>
    sys.exit(start_ipython())
  File "/opt/ipython/IPython/__init__.py", line 120, in start_ipython
    return launch_new_instance(argv=argv, **kwargs)
  File "/opt/ipython/IPython/config/application.py", line 548, in launch_instance
    app.initialize(argv)
  File "<string>", line 2, in initialize
  File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
    return method(app, *args, **kwargs)
  File "/opt/ipython/IPython/terminal/ipapp.py", line 322, in initialize
    super(TerminalIPythonApp, self).initialize(argv)
  File "<string>", line 2, in initialize
  File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
    return method(app, *args, **kwargs)
  File "/opt/ipython/IPython/core/application.py", line 378, in initialize
    self.parse_command_line(argv)
  File "/opt/ipython/IPython/terminal/ipapp.py", line 317, in parse_command_line
    return super(TerminalIPythonApp, self).parse_command_line(argv)
  File "<string>", line 2, in parse_command_line
  File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
    return method(app, *args, **kwargs)
  File "/opt/ipython/IPython/config/application.py", line 460, in parse_command_line
    return self.initialize_subcommand(subc, subargv)
  File "<string>", line 2, in initialize_subcommand
  File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
    return method(app, *args, **kwargs)
  File "/opt/ipython/IPython/config/application.py", line 398, in initialize_subcommand
    self.subapp.initialize(argv)
  File "<string>", line 2, in initialize
  File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
    return method(app, *args, **kwargs)
  File "/opt/ipython/IPython/html/notebookapp.py", line 829, in initialize
    self.init_webapp()
   File "/opt/ipython/IPython/html/notebookapp.py", line 718, in init_webapp
    self.http_server.listen(port, self.ip)
  File "/root/.local/lib/python2.7/site-packages/tornado/tcpserver.py", line 125, in listen
    sockets = bind_sockets(port, address=address)
  File "/root/.local/lib/python2.7/site-packages/tornado/netutil.py", line 137, in bind_soc
kets
    sock.bind(sockaddr)
  File "/root/anaconda/lib/python2.7/socket.py", line 224, in meth
    return getattr(self._sock,name)(*args)
error: [Errno 99] Cannot assign requested address

If you suspect this is an IPython bug, please report it at:
    https://github.com/ipython/ipython/issues
or send an email to the mailing list at ipython-dev@scipy.org

You can print a more detailed traceback right now with "%tb", or use "%debug"
to interactively debug it.

Extra-detailed tracebacks for bug-reporting purposes can be enabled via:
    c.Application.verbose_crash=True  

Can someone please suggest what I am doing wrong? Port 8888 is open (I opened access to open the port.)

In addition, to check if ipython was working from the server installation, I created another instance (a new snapshot at all), following exactly what was indicated in the github link indicated on the first line, I entered the following: $ ipython notebook --profile = nbserver

. , . ,

2014-08-18 10:50:54.605 [NotebookApp] Using existing profile dir: u'/root/.ipython/profile_nbserver'
2014-08-18 10:50:54.612 [NotebookApp] Using MathJax from CDN: https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js
2014-08-18 10:50:54.631 [NotebookApp] Serving notebooks from local directory: /root/.ipython/profile_nbserver
2014-08-18 10:50:54.631 [NotebookApp] 0 active kernels
2014-08-18 10:50:54.631 [NotebookApp] The IPython Notebook is running at: https://[all ip addresses on your system]:1111/
2014-08-18 10:50:54.631 [NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
WARNING:tornado.general:SSL Error on 7 ('10.0.218.170', 55369): [Errno 1] _ssl.c:510: error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request

, , :

502 Bad Gateway

openresty/1.5.11.1

,

+4
3

, IPython/Jupyter Ubuntu Anaconda. error: [Errno 99] Cannot assign requested address

trtm. , IP- . , IPython Jupyter Notebook .

ipython_notebook_config.py jupyter_notebook_config.py. , . , .

IPython/Jupyter < 4,0

ipython profile create    

: ~/.ipython/profile_default/ipython_notebook_config.py

Jupyter >= 4.0
:

jupyter notebook --generate-config    

: ~/.jupyter/jupyter_notebook_config.py

, . IP-, .

c.NotebookApp.ip = '192.168.1.10'   

, http://192.168.1.10:8888

+3

ipython profile create, , .

ipython_notebook_config.py / IP-, .

c.NotebookApp.ip = '127.0.0.1'

+2

c.NotebookApp.ip='*'

c.NotebookApp.ip='your server ip'

.

0

All Articles