jupyter notebook:为服务器访问指定IP时出错

时间:2018-04-27 08:31:20

标签: python jupyter-notebook tornado jupyter

我跑的时候

if (CheckConnection())
{
    Console.WriteLine("Database connection success");
}
else
{
    Console.WriteLine("Failed to connect to the database");
}

在Windows 7专业版下的cmd中我收到以下错误

jupyter notebook --ip=172.17.67.24

jupyter版本是:

jupyter 1.0.0

jupyter_client 5.1.0

jupyter_console 5.2.0

jupyter_core 4.3.0

jupyterlab 0.27.0

jupyterlab_launcher 0.4.0

如果我使用' *'因为ip一切正常,但由于安全问题,我不想使用该选项。如果我在配置文件中指定了ip,它也不会工作。

为什么这不起作用的任何想法?

2 个答案:

答案 0 :(得分:0)

不幸的是,无法指定允许访问您的笔记本的IP列表。

我建议的是使用身份验证令牌。这样,您可以使用ip = '*'启动jupyter笔记本服务器,然后将令牌提供给您的同事,而不是其他任何人。

有关详细信息,请参阅此链接: http://jupyter-notebook.readthedocs.io/en/stable/security.html

答案 1 :(得分:0)

就我而言,我必须以管理员身份运行Powershell / CMD / Terminal,该错误神秘地消失了。

我希望能对某人有所帮助。