Why I can't access remote Jupyter Notebook server?

前端 未结 15 1074
清酒与你
清酒与你 2020-12-02 04:53

I have started a Jupyter Notebook server on my centos6.5 server.And jupyter is running like

[I 17:40:59.649 NotebookApp] Serving notebooks from local directo         


        
15条回答
  •  长情又很酷
    2020-12-02 05:18

    edit the following on jupyter_notebook_config file
    enter actual computer IP address
    c.NotebookApp.ip = '192.168.x.x'
    c.NotebookApp.allow_origin = '*'

    on the client side launch jupyter notebook with login password
    jupyter notebook password

    after setting password login on browser and then type the remote server ip address followed by the port. example 192.168.1.56:8889

提交回复
热议问题