gpt4 book ai didi

amazon-web-services - 是否可以将多个用户授予 Jupyter notebook?

转载 作者:行者123 更新时间:2023-12-04 03:14:01 25 4
gpt4 key购买 nike

我正在使用 jupyter notebook 在 EC2 实例中开展一个项目。好像jupyter notebook不允许同时多个ssh到它的服务器,如果其他人想通过实例连接到jupyter notebook,我必须注销。是否可以从同一实例多次访问 jupyter notebook?

最佳答案

使用以下代码在 ~/.jupyter 文件夹中创建/更新 jupyter_notebook_config.py 文件。此文件创建后的所有 jupyter notebook 命令调用将从文件中推断配置。

from notebook.auth import passwd

c = get_config()
c.NotebookApp.open_browser=False
c.NotebookApp.ip='*' # Allows access from anywhere
c.NotebookApp.port=8885 # Jupyter runs in port 8885
c.NotebookApp.password=passwd('jupyter') # Password to access notebooks

确保您已打开 8885(或配置文件中提到的您选择的任何其他端口)以允许来自外部的连接请求(适当更新 EC2 安全组)。不确定您是否尝试过这个或者您的问题是什么,但这对我有用。

关于amazon-web-services - 是否可以将多个用户授予 Jupyter notebook?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42617692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com