手順 1.ユニットファイルの作成 sudo vim /etc/systemd/system/jupyter.service
ファイルの内容:/etc/systemd/system/jupyter.service
[Unit]
Description=Jupyter Notebook
[Service]
Type=simple
WorkingDirectory=/home/user
ExecStart=/usr/bin/jupyter notebook --config=/home/user/.jupyter/jupyter_notebook_config.py
User=user
Group=user
[Install]
WantedBy=multi-user.target
2. 起動確認
sudo systemctl start jupyter
sudo systemctl status jupyter
エラーログが出力されず、jupyterにアクセスできていればOK
3. 自動起動化
sudo systemctl enable jupyter