6
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

VSCodeのRemote SSHのJupyter Notebookをバックグラウンドで走らせる

Last updated at Posted at 2023-01-07

VSCodeのRemote SSHでJupyter Notebookを動かしていると、サーバー側が元気でもこちらの画面を閉じるとカーネルが死んでまう。それを防ぐ。

TL;DR

  1. Remote SSHでSSH接続する
  2. (Optional) pip, conda等でenvに入る
  3. (Optional) Jupyterのサーバーがない場合は立てる
  4. Jupyter Connectionを選択
  5. カーネルを選択
  6. 安心して寝落ちる

説明

クライアント側
macOS Monterey, VSCode 1.74.2
サーバー側
Ubuntu, 22.04 LTS

1. Remote SSHでSSH接続する

VSCodeの拡張機能Remote SSHを使う。

2. (Optional) pip, conda等でenvに入る

カーネルのenvになる。

3. (Optional) Jupyterのサーバーがない場合は立てる

UNIX系なら、端末を閉じてもログアウトしても処理を続けるnohupコマンドを使う。

$ nohup jupyter notebook &

nohup.outというファイルができているので、そのファイルの一番下のURLをコピーする。

To access the notebook, open this file in a browser:
        file:///home/hogehoge
    Or copy and paste one of these URLs:
        http://localhost:8871/?token=hogehoge ## <-これをコピー
     or http://127.0.0.1:8871/?token=hogehoge ## <-これでも良い

nohupその他

jobsで現在処理中のプロセスが表示できる。

$ jobs
[1]  + running    nohup jupyter notebook

fg id(zshならfg %id)でジョブをフォアグラウンドに持ってこれる。ジョブを切りたい場合はフォアグラウンドにしてから^C

$ fg %1
[1]  + 905549 running    nohup jupyter notebook
^C

4. Jupyter Connection

VSCodeに戻り、適当なNotebookを開くと右下にJupyter Server: Localと表示されている。これをクリックする。
Screen Shot 2023-01-08 at 0.02.49.png
Existingを選択。
Screen Shot 2023-01-08 at 0.04.35.png
URLをペーストし、適当な名前を入れてエンター。

5. カーネルを選択

処理したいNotebookを開き、右上のカーネル(Pythonのバージョンやenvが書いてある)をクリック。
Screen Shot 2023-01-08 at 0.10.36.png
Jupyter Sessionと書かれたカーネルを選択する。
Screen Shot 2023-01-08 at 0.51.20.png

ここで、私の場合はJupyter Sessionが表示されない場合が多かった。Notebookを開きなおすとJupyter Kernelの方は表示された(Jupyter Sessionは表示されない)ので、Jupyter Kernelを選択してから一度適当なセルを実行し、もう一度見にいくとJupyter Sessionが追加されていた。

6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?