jupyter notebook+学科サーバー
ができる前提
code:terminal
ssh amane
singularityの環境内でjupyterをインストール,起動
code:host
Singularity> pip install jupyter
Singularity> python3 -m notebook --no-browser --port=8888
ローカルで,SSH トンネル(ポートフォワーディング)
code:local
ssh -N -f -L localhost:8888:localhost:8888 amane
これで自分のブラウザから開ける.
終わったらkillする
code:terminal
ps aux | grep 'ssh .* -L'