web-dev-qa-db-ja.com

jupyter throwing error:socket.gaierror:[Errno -2] Name or service not known

AWS EMRでpysparkクラスターを実行し、pypyparkドライバーにJupyterを使用します。最近、スクリプトが失敗しました。 Jupiterはサーバーの起動に失敗します。 conda install jupyterでインストールし、Sudo initctl start jupyterで開始します。クラスターは正常に動作します。サーバーの設定値は次のとおりです。

# jupyter configs
mkdir -p ~/.jupyter
touch ls ~/.jupyter/jupyter_notebook_config.py
HASHED_PASSWORD=$(python -c "from notebook.auth import passwd; 
print(passwd('$JUPYTER_PASSWORD'))")
echo "c.NotebookApp.password = u'$HASHED_PASSWORD'" >> ~/.jupyter/jupyter_notebook_config.py
echo "c.NotebookApp.open_browser = False" >> ~/.jupyter/jupyter_notebook_config.py
echo "c.NotebookApp.ip = '*'" >> ~/.jupyter/jupyter_notebook_config.py
echo "c.NotebookApp.notebook_dir = '/mnt/$BUCKET/$FOLDER'" >> ~/.jupyter/jupyter_notebook_config.py
echo "c.ContentsManager.checkpoints_kwargs = {'root_dir': '.checkpoints'}" >> ~/.jupyter/jupyter_notebook_config.py
echo "c.NotebookApp.port = 8080" >> ~/.jupyter/jupyter_notebook_config.py
12
Michael Hoffman

Jupyter 5.7へのアップデート後にそれを見つけました。構成パラメーターを変更する必要がありました。変化する

echo "c.NotebookApp.ip = '*'" >> ~/.jupyter/jupyter_notebook_config.py

echo "c.NotebookApp.ip = '0.0.0.0'" >> ~/.jupyter/jupyter_notebook_config.py
41
Michael Hoffman