Description
Description
It's possible that I'm just doing something wrong but this behavior seems related to other issues so I'm posting it as a bug.
I'm using SSH port forwarding to execute code from VS code on a mac with a remote jupyter kernel on a Centos HPC. I was previously using jupyter notebook --no-browser --port=$ipnport --ip=$ipnip
and a notebook token. I updated to jupyter-server v2 and now when I connect to the remote kernel, the server makes a new user every second or so, for as long as the connection is open:
[I 2023-03-25 22:01:29.920 ServerApp] Generating new user for token-authenticated request: b7...
[I 2023-03-25 22:01:30.364 ServerApp] Generating new user for token-authenticated request: e1...
[I 2023-03-25 22:01:30.646 ServerApp] Generating new user for token-authenticated request: c0...
This looks to be related to #1033, as well as jupyterlab/jupyterlab#13432, both of which were resolved by #1076. But I seem to not be the only one experiencing this issue recently (e.g. jupyter/docker-stacks#1892 , NorESMhub/noresm-land-sites-platform#169 , https://stackoverflow.com/questions/75830256/jupyter-spam-with-generating-new-user-for-token-authenticated-request-in-logs )
Reproduce
I'm using c.IdentityProvider.token = '...'
in .jupyter/jupyter_server_config.py
and jupyter server --no-browser --port=$ipnport --ip=$ipnip
to open the connection.
I have tried numerous other configs but nothing seems to change the behavior. E.g.
jupyter lab --no-browser --port=$ipnport --ip=$ipnip --ServerApp.password='' --ServerApp.jpserver_extensions="nbclassic=False" --ServerApp.tornado_settings='{"headers": {"Content-Security-Policy": "frame-ancestors *"}}'
shows the same behavior.
Expected behavior
For jupyter server to create one user when the connection is established rather than a new user every second-ish.
Context
- Operating System and version:
Remote kernel running on Centos 7.7.1908, in conda env. - Browser and version:
Locally I'm using VS Code on MacOS 12.6.3 - Jupyter Server version: 2.4.0
The troubleshooting output is too long to fit here, I'll post below
Command Line Output
❯ XDG_RUNTIME_DIR="" ❯ iplport=**** ❯ ipnport=**** ❯ ipnip=$(hostname -i) ❯ jupyter server --no-browser --port=$ipnport --ip=$ipnip --ServerApp.jpserver_extensions="nbclassic=False" --debug [D 2023-03-26 02:03:24.992 ServerApp] Searching ['~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter', '~/.jupyter', '~/.local/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files [D 2023-03-26 02:03:24.993 ServerApp] Looking for jupyter_config in /etc/jupyter [D 2023-03-26 02:03:24.994 ServerApp] Looking for jupyter_config in /usr/local/etc/jupyter [D 2023-03-26 02:03:24.994 ServerApp] Looking for jupyter_config in ~/.local/etc/jupyter [D 2023-03-26 02:03:24.995 ServerApp] Looking for jupyter_config in ~/.jupyter [D 2023-03-26 02:03:24.995 ServerApp] Looking for jupyter_config in ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter [D 2023-03-26 02:03:24.998 ServerApp] Looking for jupyter_server_config in /etc/jupyter [D 2023-03-26 02:03:24.999 ServerApp] Looking for jupyter_server_config in /usr/local/etc/jupyter [D 2023-03-26 02:03:24.999 ServerApp] Looking for jupyter_server_config in ~/.local/etc/jupyter [D 2023-03-26 02:03:24.999 ServerApp] Looking for jupyter_server_config in ~/.jupyter [D 2023-03-26 02:03:25.002 ServerApp] Loaded config file: ~/.jupyter/jupyter_server_config.py [D 2023-03-26 02:03:25.002 ServerApp] Looking for jupyter_server_config in ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter [D 2023-03-26 02:03:25.012 ServerApp] Paths used for configuration of jupyter_server_config: /etc/jupyter/jupyter_server_config.json [D 2023-03-26 02:03:25.013 ServerApp] Paths used for configuration of jupyter_server_config: /usr/local/etc/jupyter/jupyter_server_config.json [D 2023-03-26 02:03:25.013 ServerApp] Paths used for configuration of jupyter_server_config: ~/.local/etc/jupyter/jupyter_server_config.json [D 2023-03-26 02:03:25.014 ServerApp] Paths used for configuration of jupyter_server_config: ~/.jupyter/jupyter_server_config.json [D 2023-03-26 02:03:25.015 ServerApp] Paths used for configuration of jupyter_server_config: ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/jupyter_server_fileid.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/jupyter_server_ydoc.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/jupyterlab.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/nbclassic.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.d/notebook_shim.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_server_config.json [I 2023-03-26 02:03:25.034 ServerApp] Package jupyter_server_fileid took 0.0077s to import [I 2023-03-26 02:03:25.063 ServerApp] Package jupyter_server_terminals took 0.0282s to import [I 2023-03-26 02:03:25.168 ServerApp] Package jupyter_server_ydoc took 0.1041s to import [I 2023-03-26 02:03:25.414 ServerApp] Package jupyterlab took 0.2449s to import [I 2023-03-26 02:03:26.007 ServerApp] Package notebook_shim took 0.0001s to import [W 2023-03-26 02:03:26.008 ServerApp] A `_jupyter_server_extension_points` function was not found in notebook_shim. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server. [I 2023-03-26 02:03:26.026 ServerApp] jupyter_server_fileid | extension was successfully linked. [I 2023-03-26 02:03:26.040 ServerApp] jupyter_server_terminals | extension was successfully linked. [I 2023-03-26 02:03:26.054 ServerApp] jupyter_server_ydoc | extension was successfully linked. [I 2023-03-26 02:03:26.073 ServerApp] jupyterlab | extension was successfully linked. [D 2023-03-26 02:03:26.900 ServerApp] Paths used for configuration of jupyter_notebook_config: ~/.jupyter/jupyter_notebook_config.json [D 2023-03-26 02:03:26.901 ServerApp] Paths used for configuration of jupyter_notebook_config: /etc/jupyter/jupyter_notebook_config.json [D 2023-03-26 02:03:26.901 ServerApp] Paths used for configuration of jupyter_notebook_config: /usr/local/etc/jupyter/jupyter_notebook_config.json [D 2023-03-26 02:03:26.902 ServerApp] Paths used for configuration of jupyter_notebook_config: ~/.local/etc/jupyter/jupyter_notebook_config.json [D 2023-03-26 02:03:26.902 ServerApp] Paths used for configuration of jupyter_notebook_config: ~/.jupyter/jupyter_notebook_config.json [D 2023-03-26 02:03:26.903 ServerApp] Paths used for configuration of jupyter_notebook_config: ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_notebook_config.d/jupyter_server_ydoc.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json ~/software/anaconda3/envs/ve_iaa_pytorch/etc/jupyter/jupyter_notebook_config.json [I 2023-03-26 02:03:26.906 ServerApp] notebook_shim | extension was successfully linked. [I 2023-03-26 02:03:27.226 ServerApp] notebook_shim | extension was successfully loaded. [I 2023-03-26 02:03:27.227 FileIdExtension] Configured File ID manager: ArbitraryFileIdManager [I 2023-03-26 02:03:27.228 FileIdExtension] ArbitraryFileIdManager : Configured root dir: ~/ite_iaa/ite_gb_inverseappraisal/code [I 2023-03-26 02:03:27.228 FileIdExtension] ArbitraryFileIdManager : Configured database path: ~/.local/share/jupyter/file_id_manager.db [I 2023-03-26 02:03:27.229 FileIdExtension] ArbitraryFileIdManager : Successfully connected to database file. [I 2023-03-26 02:03:27.229 FileIdExtension] ArbitraryFileIdManager : Creating File ID tables and indices with journal_mode = DELETE [I 2023-03-26 02:03:27.236 FileIdExtension] Attached event listeners. [I 2023-03-26 02:03:27.237 ServerApp] jupyter_server_fileid | extension was successfully loaded. [I 2023-03-26 02:03:27.240 ServerApp] jupyter_server_terminals | extension was successfully loaded. [I 2023-03-26 02:03:27.241 ServerApp] jupyter_server_ydoc | extension was successfully loaded. [I 2023-03-26 02:03:27.243 LabApp] JupyterLab extension loaded from ~/software/anaconda3/envs/ve_iaa_pytorch/lib/python3.10/site-packages/jupyterlab [I 2023-03-26 02:03:27.243 LabApp] JupyterLab application directory is ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/lab [I 2023-03-26 02:03:27.251 ServerApp] jupyterlab | extension was successfully loaded. [I 2023-03-26 02:03:27.251 ServerApp] Serving notebooks from local directory: ~/ite_iaa/ite_gb_inverseappraisal/code [I 2023-03-26 02:03:27.251 ServerApp] Jupyter Server 2.4.0 is running at: [I 2023-03-26 02:03:27.252 ServerApp] http://172.**.**.***:8458/?token=... [I 2023-03-26 02:03:27.252 ServerApp] http://127.0.0.1:8458/?token=... [I 2023-03-26 02:03:27.252 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). [D 2023-03-26 02:04:49.936 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:49.937 ServerApp] Generating new user for token-authenticated request: b6f3db5b297f4419b4e857742fc9eaba [W 2023-03-26 02:04:49.939 ServerApp] 404 DELETE /api/sessions/d884d45b-6edb-4538-a9ae-d1bcbef676bf?1679810689733 (172.**.**.***): Session not found: session_id='d884d45b-6edb-4538-a9ae-d1bcbef676bf' [W 2023-03-26 02:04:49.940 ServerApp] wrote error: "Session not found: session_id='d884d45b-6edb-4538-a9ae-d1bcbef676bf'" Traceback (most recent call last): File "~/software/anaconda3/envs/ve_iaa_pytorch/lib/python3.10/site-packages/tornado/web.py", line 1713, in _execute result = await result File "~/software/anaconda3/envs/ve_iaa_pytorch/lib/python3.10/site-packages/jupyter_server/services/sessions/handlers.py", line 190, in delete await sm.delete_session(session_id) File "~/software/anaconda3/envs/ve_iaa_pytorch/lib/python3.10/site-packages/jupyter_server/services/sessions/sessionmanager.py", line 523, in delete_session session = await self.get_session(session_id=session_id) File "~/software/anaconda3/envs/ve_iaa_pytorch/lib/python3.10/site-packages/jupyter_server/services/sessions/sessionmanager.py", line 427, in get_session raise web.HTTPError(404, "Session not found: %s" % (", ".join(q))) tornado.web.HTTPError: HTTP 404: Not Found (Session not found: session_id='d884d45b-6edb-4538-a9ae-d1bcbef676bf') [W 2023-03-26 02:04:49.995 ServerApp] 404 DELETE /api/sessions/d884d45b-6edb-4538-a9ae-d1bcbef676bf?1679810689733 (b6f3db5b297f4419b4e857742fc9eaba@172.**.**.***) 59.76ms referer=None [D 2023-03-26 02:04:50.215 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:50.215 ServerApp] Generating new user for token-authenticated request: d903a67ee2ce475ebc6a698a99587c59 [D 2023-03-26 02:04:50.218 ServerApp] 200 GET /api/sessions?1679810690008 (d903a67ee2ce475ebc6a698a99587c59@172.**.**.***) 3.76ms [D 2023-03-26 02:04:50.219 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:50.219 ServerApp] Generating new user for token-authenticated request: 4d9f8b880c8647609a88f5278f34ae0a [D 2023-03-26 02:04:50.221 ServerApp] 200 GET /api/kernels?1679810690013 (4d9f8b880c8647609a88f5278f34ae0a@172.**.**.***) 2.58ms [D 2023-03-26 02:04:51.039 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:51.040 ServerApp] Generating new user for token-authenticated request: b093f3fc2923417998ff0a46d7bb8c2d [D 2023-03-26 02:04:51.042 ServerApp] 200 GET /api/kernels?1679810690843 (b093f3fc2923417998ff0a46d7bb8c2d@172.**.**.***) 3.35ms [D 2023-03-26 02:04:51.949 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:51.950 ServerApp] Generating new user for token-authenticated request: adeba815d9a041ff98267e2dcc2a0c09 [D 2023-03-26 02:04:51.958 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.479 ServerApp] 200 GET /api/kernelspecs?1679810691745 (adeba815d9a041ff98267e2dcc2a0c09@172.**.**.***) 2531.48ms [D 2023-03-26 02:04:54.480 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.481 ServerApp] Generating new user for token-authenticated request: f94b39ebb1164d239014fd06d35024c2 [D 2023-03-26 02:04:54.482 ServerApp] 200 GET /api/kernels?1679810691749 (f94b39ebb1164d239014fd06d35024c2@172.**.**.***) 2533.24ms [D 2023-03-26 02:04:54.483 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.483 ServerApp] Generating new user for token-authenticated request: 9fcfed158dbe4e90b62f199bb807217d [D 2023-03-26 02:04:54.485 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.489 ServerApp] 200 GET /api/kernelspecs?1679810691752 (9fcfed158dbe4e90b62f199bb807217d@172.**.**.***) 6.75ms [D 2023-03-26 02:04:54.492 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.493 ServerApp] Generating new user for token-authenticated request: e28c6a63aa504e45b95ea5f44312ee42 [D 2023-03-26 02:04:54.494 ServerApp] 200 GET /api/kernels?1679810691754 (e28c6a63aa504e45b95ea5f44312ee42@172.**.**.***) 3.35ms [D 2023-03-26 02:04:54.494 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.494 ServerApp] Generating new user for token-authenticated request: 5d9c0352565e4be6b61712fa5944dc6b [D 2023-03-26 02:04:54.495 ServerApp] 200 GET /api/kernels?1679810691755 (5d9c0352565e4be6b61712fa5944dc6b@172.**.**.***) 4.46ms [D 2023-03-26 02:04:54.496 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.496 ServerApp] Generating new user for token-authenticated request: b751740685854aaca515f2dc18800287 [D 2023-03-26 02:04:54.497 ServerApp] 200 GET /api/sessions?1679810691757 (b751740685854aaca515f2dc18800287@172.**.**.***) 5.57ms [D 2023-03-26 02:04:54.497 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.497 ServerApp] Generating new user for token-authenticated request: a0a412414d524432aadc794dcd61ef88 [D 2023-03-26 02:04:54.498 ServerApp] 200 GET /api/kernels?1679810691758 (a0a412414d524432aadc794dcd61ef88@172.**.**.***) 6.62ms [D 2023-03-26 02:04:54.499 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.499 ServerApp] Generating new user for token-authenticated request: 9aa052fc49cd45c8a03efa60ee17c64b [D 2023-03-26 02:04:54.500 ServerApp] 200 GET /api/sessions?1679810691762 (9aa052fc49cd45c8a03efa60ee17c64b@172.**.**.***) 7.67ms [D 2023-03-26 02:04:54.705 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.706 ServerApp] Generating new user for token-authenticated request: 5e45e93ac3ca4780a7ea82beb71a2d7c [D 2023-03-26 02:04:54.709 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.715 ServerApp] 200 GET /api/kernelspecs?1679810694452 (5e45e93ac3ca4780a7ea82beb71a2d7c@172.**.**.***) 10.16ms [D 2023-03-26 02:04:54.717 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.717 ServerApp] Generating new user for token-authenticated request: 9289c1a6b095494bb5a0192b33b28023 [D 2023-03-26 02:04:54.720 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.726 ServerApp] 200 GET /api/kernelspecs?1679810694437 (9289c1a6b095494bb5a0192b33b28023@172.**.**.***) 10.50ms [D 2023-03-26 02:04:54.726 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.726 ServerApp] Generating new user for token-authenticated request: 22829e8704784517b381a8dcc3b48665 [D 2023-03-26 02:04:54.729 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.734 ServerApp] 200 GET /api/kernelspecs?1679810694454 (22829e8704784517b381a8dcc3b48665@172.**.**.***) 18.12ms [D 2023-03-26 02:04:54.734 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.735 ServerApp] Generating new user for token-authenticated request: 8eacf34301f143c49be5679e7daae7cf [D 2023-03-26 02:04:54.737 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:54.743 ServerApp] 200 GET /api/kernelspecs?1679810694456 (8eacf34301f143c49be5679e7daae7cf@172.**.**.***) 26.75ms [D 2023-03-26 02:04:54.813 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:54.814 ServerApp] Generating new user for token-authenticated request: 7aa1431941024139b211faa200878346 [D 2023-03-26 02:04:54.815 ServerApp] 200 GET /api/sessions?1679810694621 (7aa1431941024139b211faa200878346@172.**.**.***) 2.51ms [D 2023-03-26 02:04:55.117 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:55.117 ServerApp] Generating new user for token-authenticated request: 98787ca6f17247169a79b466c1730e0f [D 2023-03-26 02:04:55.119 ServerApp] 200 GET /api/sessions?1679810694864 (98787ca6f17247169a79b466c1730e0f@172.**.**.***) 2.86ms [D 2023-03-26 02:04:58.410 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:58.411 ServerApp] Generating new user for token-authenticated request: 016f76fa87d948d29f43e61b0d0f1641 [D 2023-03-26 02:04:58.413 ServerApp] 200 GET /api/kernels?1679810698213 (016f76fa87d948d29f43e61b0d0f1641@172.**.**.***) 3.06ms [D 2023-03-26 02:04:58.486 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:58.487 ServerApp] Generating new user for token-authenticated request: e0d2876788fd4e09bef15653d8d82dcc [D 2023-03-26 02:04:58.490 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:04:58.496 ServerApp] 200 GET /api/kernelspecs?1679810698218 (e0d2876788fd4e09bef15653d8d82dcc@172.**.**.***) 10.43ms [D 2023-03-26 02:04:58.760 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:58.761 ServerApp] Generating new user for token-authenticated request: 0b68be53811b46d8b69317a45b93afdf [I 2023-03-26 02:04:58.762 ServerApp] Creating new notebook in [D 2023-03-26 02:04:58.888 ServerApp] Saving ~/ite_iaa/ite_gb_inverseappraisal/code/Untitled.ipynb [D 2023-03-26 02:04:59.029 ServerApp] 201 POST /api/contents?1679810698503 (0b68be53811b46d8b69317a45b93afdf@172.**.**.***) 269.80ms [D 2023-03-26 02:04:59.236 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.236 ServerApp] Generating new user for token-authenticated request: a13ba080d5b14a308a60b3bde175a8be [D 2023-03-26 02:04:59.243 ServerApp] Renaming checkpoint ~/ite_iaa/ite_gb_inverseappraisal/code/.ipynb_checkpoints/Untitled-checkpoint.ipynb -> ~/ite_iaa/ite_gb_inverseappraisal/code/.ipynb_checkpoints/caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56-checkpoint.ipynb [D 2023-03-26 02:04:59.247 ServerApp] 200 PATCH /api/contents/Untitled.ipynb?1679810698984 (a13ba080d5b14a308a60b3bde175a8be@172.**.**.***) 12.87ms [D 2023-03-26 02:04:59.458 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.459 ServerApp] Generating new user for token-authenticated request: 5ac41f34c75243d2bd6a8e0258ffcc30 [D 2023-03-26 02:04:59.469 ServerApp] Instantiating kernel 'Python 3 (ipykernel)' with kernel provisioner: local-provisioner [D 2023-03-26 02:04:59.494 ServerApp] Starting kernel: ['~/software/anaconda3/envs/ve_iaa_pytorch/bin/python', '-m', 'ipykernel_launcher', '-f', '~/.local/share/jupyter/runtime/kernel-f8eff202-970d-4500-b2fa-5179642e4946.json'] [D 2023-03-26 02:04:59.498 ServerApp] Connecting to: tcp://127.0.0.1:49483 [D 2023-03-26 02:04:59.510 ServerApp] Connecting to: tcp://127.0.0.1:56492 [I 2023-03-26 02:04:59.512 ServerApp] Kernel started: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:04:59.512 ServerApp] Kernel args: {'kernel_name': 'python3', 'env': {'XDG_SESSION_ID': '538292', 'TERM': 'xterm-256color', 'SHELL': '/bin/bash', 'SSH_CLIENT': '71.237.71.40 63981 22', 'SSH_TTY': '/dev/pts/275', 'USER': 'dae', 'DEFAULT_TMUX_SHELL': '~/me/zsh/bin/zsh', 'MAIL': '/var/spool/mail/dae', 'PATH': '~/software/anaconda3/envs/ve_iaa_pytorch/bin:~/software/anaconda3/condabin:~/software/texlive/bin/x86_64-linux:~/software/node-v12.14.0-linux-x64/bin:/cm/shared/openmind/gcc/11.1.0/bin:/usr/lib64/qt-3.3/bin:~/me/zsh/bin:~/me/vim/bin:~/me/tmux/bin:~/me/git/bin:/usr/local/bin:/usr/bin:~/bin:/usr/local/sbin:/usr/sbin', 'PWD': '~/ite_iaa/ite_gb_inverseappraisal/code', 'LANG': 'en_US.UTF-8', 'SHLVL': '2', 'HOME': '/home/dae', 'LOGNAME': 'dae', 'ME_PATH': '~/me', 'SSH_CONNECTION': '71.237.71.40 63981 18.13.53.52 22', 'XDG_RUNTIME_DIR': '', '_': '~/software/anaconda3/envs/ve_iaa_pytorch/bin/jupyter', 'OLDPWD': '~/ite_iaa/ite_gb_inverseappraisal', 'HISTCONTROL': 'ignoredups', 'HOSTNAME': 'openmind7', 'HISTSIZE': '50000', 'TMOUT': '604800', 'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', 'CVS_RSH': 'ssh', 'XDG_DATA_DIRS': '~/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share', 'SSH_ASKPASS': '/usr/libexec/openssh/gnome-ssh-askpass', 'LESSOPEN': '||/usr/bin/lesspipe.sh %s', 'MODULESHOME': '/usr/share/Modules', 'LOADEDMODULES': 'openmind/gcc/11.1.0:slurm/14', 'MODULEPATH': '/cm/shared/modulefiles:/home/software/modulefiles', 'NCARG_ROOT': '/usr', 'NCARG_LIB': '/usr/lib64/ncarg', 'NCARG_DATABASE': '/usr/lib64/ncarg/database', 'NCARG_FONTCAPS': '/usr/lib64/ncarg/fontcaps', 'NCARG_GRAPHCAPS': '/usr/lib64/ncarg/graphcaps', 'NCARG_NCARG': '/usr/share/ncarg', 'QT_GRAPHICSSYSTEM_CHECKED': '1', 'QTDIR': '/usr/lib64/qt-3.3', 'QTINC': '/usr/lib64/qt-3.3/include', 'QTLIB': '/usr/lib64/qt-3.3/lib', 'P9K_TTY': 'old', '_P9K_TTY': '/dev/pts/275', 'TMUX_COLOR': '#968164', 'LD_LIBRARY_PATH': '/cm/shared/openmind/gcc/11.1.0/lib:/cm/shared/openmind/gcc/11.1.0/lib64', '_LMFILES_': '/cm/shared/modulefiles/openmind/gcc/11.1.0:/cm/shared/modulefiles/slurm/14', 'ZSH': '~/.oh-my-zsh', 'ZSH_COMPDUMP': '~/.oh-my-zsh/cache/.zcompdump-openmind7', 'PAGER': 'less', 'LESS': '-R', 'LSCOLORS': 'Gxfxcxdxbxegedabagacad', 'ZSH_TMUX_TERM': 'screen-256color', '_ZSH_TMUX_FIXED_CONFIG': '~/.oh-my-zsh/plugins/tmux/tmux.only.conf', 'P9K_SSH': '1', '_P9K_SSH_TTY': '/dev/pts/275', 'project_name': 'ITE_IAAcmdstan', 'NVM_DIR': '~/.nvm', 'NVM_CD_FLAGS': '-q', 'NVM_RC_VERSION': '', 'CONDA_EXE': '~/software/anaconda3/bin/conda', '_CE_M': '', '_CE_CONDA': '', 'CONDA_PYTHON_EXE': '~/software/anaconda3/bin/python', 'CONDA_SHLVL': '3', 'CONDA_PREFIX': '~/software/anaconda3/envs/ve_iaa_pytorch', 'CONDA_DEFAULT_ENV': 've_iaa_pytorch', 'CONDA_PROMPT_MODIFIER': '(ve_iaa_pytorch) ', 'CONDA_PREFIX_1': '~/software/anaconda3', 'CONDA_PREFIX_2': '~/software/anaconda3/envs/omlab', 'CONDA_MKL_INTERFACE_LAYER_BACKUP': '', 'MKL_INTERFACE_LAYER': 'LP64,GNU', 'HOST': 'openmind7', 'PYDEVD_USE_FRAME_EVAL': 'NO', 'JPY_SESSION_NAME': '~/ite_iaa/ite_gb_inverseappraisal/code/1040a5f6-e8b8-40b2-84f6-ff6063682e62'}, 'cwd': '~/ite_iaa/ite_gb_inverseappraisal/code'} [D 2023-03-26 02:04:59.514 ServerApp] 201 POST /api/sessions?1679810699203 (5ac41f34c75243d2bd6a8e0258ffcc30@172.**.**.***) 56.96ms [D 2023-03-26 02:04:59.726 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.726 ServerApp] Generating new user for token-authenticated request: 4420b79f868b46629a1a8c08678f0f76 [D 2023-03-26 02:04:59.728 ServerApp] 200 GET /api/sessions?1679810699468 (4420b79f868b46629a1a8c08678f0f76@172.**.**.***) 2.77ms [D 2023-03-26 02:04:59.935 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.935 ServerApp] Generating new user for token-authenticated request: a20e56dfd61e4092a0f0d63117da2569 [D 2023-03-26 02:04:59.938 ServerApp] Requesting kernel info from f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:04:59.938 ServerApp] Connecting to: tcp://127.0.0.1:52742 [D 2023-03-26 02:04:59.942 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.943 ServerApp] Generating new user for token-authenticated request: b647de6cb2b54ab88aafc42d99d9330f [W 2023-03-26 02:04:59.944 ServerApp] delete /caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56.ipynb [D 2023-03-26 02:04:59.944 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:04:59.945 ServerApp] Generating new user for token-authenticated request: 52f1d379ccc547068f2c9d2d132d28cf [D 2023-03-26 02:04:59.946 ServerApp] 200 GET /api/kernels?1679810699690 (52f1d379ccc547068f2c9d2d132d28cf@172.**.**.***) 5.07ms [W 2023-03-26 02:04:59.949 ServerApp] Skipping trash for ~/ite_iaa/ite_gb_inverseappraisal/code/caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56.ipynb, on different device to home directory [D 2023-03-26 02:04:59.949 ServerApp] Unlinking file ~/ite_iaa/ite_gb_inverseappraisal/code/caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56.ipynb [D 2023-03-26 02:04:59.953 ServerApp] unlinking ~/ite_iaa/ite_gb_inverseappraisal/code/.ipynb_checkpoints/caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56-checkpoint.ipynb [D 2023-03-26 02:04:59.955 ServerApp] 204 DELETE /api/contents/caa_main.py-jvsc-df371516-2c79-478b-9455-649f3cd8eb3ce74bae1c-2f73-4ed7-9433-9174119b7f56.ipynb?1679810699687 (b647de6cb2b54ab88aafc42d99d9330f@172.**.**.***) 15.29ms [D 2023-03-26 02:05:00.978 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:00.978 ServerApp] Generating new user for token-authenticated request: 1c8bf791d3454ee8b2538c56abadee1d [D 2023-03-26 02:05:00.981 ServerApp] 200 GET /api/kernels?1679810700777 (1c8bf791d3454ee8b2538c56abadee1d@172.**.**.***) 3.75ms [D 2023-03-26 02:05:01.254 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:01.255 ServerApp] Generating new user for token-authenticated request: fbdb6e204d42482e8a606592148b67c8 [D 2023-03-26 02:05:01.257 ServerApp] 200 GET /api/kernels?1679810700998 (fbdb6e204d42482e8a606592148b67c8@172.**.**.***) 3.28ms [D 2023-03-26 02:05:02.700 ServerApp] Received kernel info: {'status': 'ok', 'protocol_version': '5.3', 'implementation': 'ipython', 'implementation_version': '8.11.0', 'language_info': {'name': 'python', 'version': '3.10.9', 'mimetype': 'text/x-python', 'codemirror_mode': {'name': 'ipython', 'version': 3}, 'pygments_lexer': 'ipython3', 'nbconvert_exporter': 'python', 'file_extension': '.py'}, 'banner': "Python 3.10.9 | packaged by conda-forge | (main, Feb 2 2023, 20:20:04) [GCC 11.3.0]\nType 'copyright', 'credits' or 'license' for more information\nIPython 8.11.0 -- An enhanced Interactive Python. Type '?' for help.\n", 'help_links': [{'text': 'Python Reference', 'url': 'https://docs.python.org/3.10'}, {'text': 'IPython Reference', 'url': 'https://ipython.org/documentation.html'}, {'text': 'NumPy Reference', 'url': 'https://docs.scipy.org/doc/numpy/reference/'}, {'text': 'SciPy Reference', 'url': 'https://docs.scipy.org/doc/scipy/reference/'}, {'text': 'Matplotlib Reference', 'url': 'https://matplotlib.org/contents.html'}, {'text': 'SymPy Reference', 'url': 'http://docs.sympy.org/latest/index.html'}, {'text': 'pandas Reference', 'url': 'https://pandas.pydata.org/pandas-docs/stable/'}]} [D 2023-03-26 02:05:02.702 ServerApp] 101 GET /api/kernels/f8eff202-970d-4500-b2fa-5179642e4946/channels?session_id=39958ba4-a26d-496e-a96b-8c3e604dcae0&token=[secret] (a20e56dfd61e4092a0f0d63117da2569@172.**.**.***) 2768.13ms [I 2023-03-26 02:05:02.702 ServerApp] Connecting to kernel f8eff202-970d-4500-b2fa-5179642e4946. [D 2023-03-26 02:05:02.703 ServerApp] Getting buffer for f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.703 ServerApp] Connecting to: tcp://127.0.0.1:56492 [D 2023-03-26 02:05:02.704 ServerApp] Connecting to: tcp://127.0.0.1:52742 [D 2023-03-26 02:05:02.705 ServerApp] Connecting to: tcp://127.0.0.1:49483 [D 2023-03-26 02:05:02.705 ServerApp] Connecting to: tcp://127.0.0.1:48930 [D 2023-03-26 02:05:02.706 ServerApp] Connecting to: tcp://127.0.0.1:52742 [D 2023-03-26 02:05:02.706 ServerApp] Connecting to: tcp://127.0.0.1:49483 [D 2023-03-26 02:05:02.708 ServerApp] Nudge: attempt 1 on kernel f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.714 ServerApp] Nudge: IOPub received: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.714 ServerApp] Nudge: resolving iopub future: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.717 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:02.719 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:02.723 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:02.723 ServerApp] Nudge: control info reply received: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.723 ServerApp] Nudge: resolving control future: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.724 ServerApp] Nudge: shell info reply received: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:02.727 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:02.827 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:02.829 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:02.848 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:02.851 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: execute_input [D 2023-03-26 02:05:02.856 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:02.976 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:02.983 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: execute_input [D 2023-03-26 02:05:02.992 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: stream [D 2023-03-26 02:05:02.998 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:03.138 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:03.149 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:03.152 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:03.155 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: execute_input [D 2023-03-26 02:05:03.161 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:03.177 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:03.192 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: execute_input [D 2023-03-26 02:05:03.219 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: stream [D 2023-03-26 02:05:03.227 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:03.233 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.233 ServerApp] Generating new user for token-authenticated request: cde8f04bb56a430488cb4f24d74af28a [D 2023-03-26 02:05:03.237 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:05:03.244 ServerApp] 200 GET /api/kernelspecs?1679810703003 (cde8f04bb56a430488cb4f24d74af28a@172.**.**.***) 16.15ms [D 2023-03-26 02:05:03.244 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.244 ServerApp] Generating new user for token-authenticated request: 8b98d10e303f44c3b4901b3c689f53c7 [D 2023-03-26 02:05:03.246 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:05:03.251 ServerApp] 200 GET /api/kernelspecs?1679810703005 (8b98d10e303f44c3b4901b3c689f53c7@172.**.**.***) 22.17ms [D 2023-03-26 02:05:03.251 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.252 ServerApp] Generating new user for token-authenticated request: 89e9c5b736c14978a8c2e048fa9ad266 [D 2023-03-26 02:05:03.253 ServerApp] 200 GET /api/kernels?1679810703008 (89e9c5b736c14978a8c2e048fa9ad266@172.**.**.***) 23.44ms [D 2023-03-26 02:05:03.253 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.253 ServerApp] Generating new user for token-authenticated request: e008e6b5a10c4bdb9f45f6428e250a16 [D 2023-03-26 02:05:03.255 ServerApp] 200 GET /api/kernels?1679810703011 (e008e6b5a10c4bdb9f45f6428e250a16@172.**.**.***) 24.66ms [D 2023-03-26 02:05:03.255 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.255 ServerApp] Generating new user for token-authenticated request: eb65f38f8ceb421e8bfdb94e727e875d [D 2023-03-26 02:05:03.256 ServerApp] 200 GET /api/kernels?1679810703013 (eb65f38f8ceb421e8bfdb94e727e875d@172.**.**.***) 25.82ms [D 2023-03-26 02:05:03.257 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.257 ServerApp] Generating new user for token-authenticated request: 0e62f1b7d0f84c78ba469d5634b27afa [D 2023-03-26 02:05:03.258 ServerApp] 200 GET /api/kernels?1679810703017 (0e62f1b7d0f84c78ba469d5634b27afa@172.**.**.***) 26.98ms [D 2023-03-26 02:05:03.258 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.259 ServerApp] Generating new user for token-authenticated request: 7735e0876f1842c5b3b571fa5ca3101c [D 2023-03-26 02:05:03.260 ServerApp] 200 GET /api/sessions?1679810703018 (7735e0876f1842c5b3b571fa5ca3101c@172.**.**.***) 28.33ms [D 2023-03-26 02:05:03.261 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.261 ServerApp] Generating new user for token-authenticated request: 912f0c617c134ff0ab08fbe57934033a [D 2023-03-26 02:05:03.262 ServerApp] 200 GET /api/sessions?1679810703021 (912f0c617c134ff0ab08fbe57934033a@172.**.**.***) 29.84ms [D 2023-03-26 02:05:03.347 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (busy) [D 2023-03-26 02:05:03.349 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: execute_input [D 2023-03-26 02:05:03.351 ServerApp] activity on f8eff202-970d-4500-b2fa-5179642e4946: status (idle) [D 2023-03-26 02:05:03.423 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.424 ServerApp] Generating new user for token-authenticated request: db66bad2f5594d33858f9ebf6d238448 [D 2023-03-26 02:05:03.428 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:05:03.434 ServerApp] 200 GET /api/kernelspecs?1679810703206 (db66bad2f5594d33858f9ebf6d238448@172.**.**.***) 11.27ms [D 2023-03-26 02:05:03.436 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.436 ServerApp] Generating new user for token-authenticated request: 274b00d4d87943168b43d8e9a957b08d [D 2023-03-26 02:05:03.439 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:05:03.445 ServerApp] 200 GET /api/kernelspecs?1679810703223 (274b00d4d87943168b43d8e9a957b08d@172.**.**.***) 10.71ms [D 2023-03-26 02:05:03.446 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:03.446 ServerApp] Generating new user for token-authenticated request: 8aee281c89d3491abfca2bc5c2e2e719 [D 2023-03-26 02:05:03.448 ServerApp] Found kernel python3 in ~/software/anaconda3/envs/ve_iaa_pytorch/share/jupyter/kernels [D 2023-03-26 02:05:03.453 ServerApp] 200 GET /api/kernelspecs?1679810703227 (8aee281c89d3491abfca2bc5c2e2e719@172.**.**.***) 18.06ms [D 2023-03-26 02:05:05.008 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:05.009 ServerApp] Generating new user for token-authenticated request: 40d5312802a54e67b44bb24c5eb472a6 [D 2023-03-26 02:05:05.011 ServerApp] 200 GET /api/sessions?1679810704803 (40d5312802a54e67b44bb24c5eb472a6@172.**.**.***) 3.14ms [D 2023-03-26 02:05:05.298 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:05.298 ServerApp] Generating new user for token-authenticated request: 2015273e652644f7a79157b77ce766ae [D 2023-03-26 02:05:05.300 ServerApp] 200 GET /api/sessions?1679810705077 (2015273e652644f7a79157b77ce766ae@172.**.**.***) 3.01ms [D 2023-03-26 02:05:09.888 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:09.889 ServerApp] Generating new user for token-authenticated request: 31fa02e0e87347009278a8def91cbcba [D 2023-03-26 02:05:09.891 ServerApp] 200 GET /api/sessions?1679810709688 (31fa02e0e87347009278a8def91cbcba@172.**.**.***) 3.21ms [D 2023-03-26 02:05:10.099 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:10.100 ServerApp] Generating new user for token-authenticated request: 30b1dee45439456d8f1328ba8a770d12 [D 2023-03-26 02:05:10.102 ServerApp] 200 GET /api/kernels?1679810709902 (30b1dee45439456d8f1328ba8a770d12@172.**.**.***) 3.12ms [D 2023-03-26 02:05:11.129 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:11.130 ServerApp] Generating new user for token-authenticated request: 75ee6e4156f24351afc3d36c31a0ee51 [D 2023-03-26 02:05:11.132 ServerApp] 200 GET /api/kernels?1679810710935 (75ee6e4156f24351afc3d36c31a0ee51@172.**.**.***) 3.05ms [D 2023-03-26 02:05:11.421 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:11.423 ServerApp] Generating new user for token-authenticated request: 53daa47ec1da41c4bdf5fbc1d2fbcbeb [D 2023-03-26 02:05:11.427 ServerApp] 200 GET /api/kernels?1679810711217 (53daa47ec1da41c4bdf5fbc1d2fbcbeb@172.**.**.***) 11.79ms [D 2023-03-26 02:05:15.167 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:15.167 ServerApp] Generating new user for token-authenticated request: 4bde67d5efc24d1994762ce9766195d9 [D 2023-03-26 02:05:15.169 ServerApp] 200 GET /api/sessions?1679810714972 (4bde67d5efc24d1994762ce9766195d9@172.**.**.***) 3.16ms [D 2023-03-26 02:05:15.451 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:15.452 ServerApp] Generating new user for token-authenticated request: e94bb04268724812b332d6e84c801e00 [D 2023-03-26 02:05:15.453 ServerApp] 200 GET /api/sessions?1679810715258 (e94bb04268724812b332d6e84c801e00@172.**.**.***) 3.03ms [D 2023-03-26 02:05:16.339 ServerApp] Accepting token-authenticated request from 172.**.**.*** [I 2023-03-26 02:05:16.339 ServerApp] Generating new user for token-authenticated request: 4373c695d8304238aea31066f19f3766 [D 2023-03-26 02:05:16.341 ServerApp] 200 GET /api/sessions?1679810716146 (4373c695d8304238aea31066f19f3766@172.**.**.***) 3.00ms ^C[I 2023-03-26 02:05:16.455 ServerApp] interrupted [I 2023-03-26 02:05:16.456 ServerApp] Serving notebooks from local directory: ~/ite_iaa/ite_gb_inverseappraisal/code 1 active kernel Jupyter Server 2.4.0 is running at: http://172.**.**.***:8458/?token=... http://127.0.0.1:8458/?token=... Shutdown this Jupyter server (y/[n])? y [C 2023-03-26 02:05:18.173 ServerApp] Shutdown confirmed [I 2023-03-26 02:05:18.177 ServerApp] Shutting down 6 extensions [D 2023-03-26 02:05:18.178 ServerApp] jupyter_server_fileid | extension app 'jupyter_server_fileid' stopping [D 2023-03-26 02:05:18.178 ServerApp] jupyter_server_fileid | extension app 'jupyter_server_fileid' stopped [D 2023-03-26 02:05:18.178 ServerApp] jupyter_server_terminals | extension app 'jupyter_server_terminals' stopping [D 2023-03-26 02:05:18.178 ServerApp] jupyter_server_terminals | extension app 'jupyter_server_terminals' stopped [D 2023-03-26 02:05:18.179 ServerApp] jupyter_server_ydoc | extension app 'jupyter_server_ydoc' stopping [D 2023-03-26 02:05:18.179 ServerApp] jupyter_server_ydoc | extension app 'jupyter_server_ydoc' stopped [D 2023-03-26 02:05:18.179 ServerApp] jupyterlab | extension app 'lab' stopping [D 2023-03-26 02:05:18.179 ServerApp] jupyterlab | extension app 'lab' stopped [I 2023-03-26 02:05:18.180 ServerApp] Shutting down 1 kernel [D 2023-03-26 02:05:18.182 ServerApp] Clearing buffer for f8eff202-970d-4500-b2fa-5179642e4946 [I 2023-03-26 02:05:18.182 ServerApp] Kernel shutdown: f8eff202-970d-4500-b2fa-5179642e4946 [D 2023-03-26 02:05:18.800 ServerApp] Websocket closed f8eff202-970d-4500-b2fa-5179642e4946:39958ba4-a26d-496e-a96b-8c3e604dcae0