Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem running with podman on HPC #5

Open
benz0li opened this issue Aug 8, 2024 · 26 comments
Open

Problem running with podman on HPC #5

benz0li opened this issue Aug 8, 2024 · 26 comments
Assignees
Labels
bug Something isn't working

Comments

@benz0li
Copy link
Member

benz0li commented Aug 8, 2024

You could give glcr.b-data.ch/jupyterlab/r/geospatial a try, i.e.

podman run --rm \
  -p 8888:8888 \
  glcr.b-data.ch/jupyterlab/r/geospatial

This just gives me: Error: OCI runtime error: crun: cannot setresgid to 100: Invalid argument

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/geospatial

This seems to do much more:

Entered start.sh with args: start-notebook.sh
Running hooks in: /usr/local/bin/start-notebook.d as uid: 0 gid: 0
Sourcing shell script: /usr/local/bin/start-notebook.d/10-populate.sh
Done running hooks in: /usr/local/bin/start-notebook.d
Updated the jovyan user:
- username: jovyan       -> root
- home dir: /home/jovyan -> /home/root
Attempting to copy /home/jovyan to /home/root...
Success!
Changing working directory to /home/root/
Running hooks in: /usr/local/bin/before-notebook.d as uid: 0 gid: 0
Sourcing shell script: /usr/local/bin/before-notebook.d/10-env.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/11-home.sh

But there is an error in the "end": runuser: cannot set groups: Operation not permitted

Originally posted by @bernt-matthias in rocker-org/rocker-versioned2#838 (comment)

@benz0li benz0li added the bug Something isn't working label Aug 8, 2024
@benz0li benz0li self-assigned this Aug 8, 2024
@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

Most likely due to run_user_group, i.e.

run_user_group mkdir -p "/home/$NB_USER${DOMAIN:+@$DOMAIN}/projects"
run_user_group mkdir -p "/home/$NB_USER${DOMAIN:+@$DOMAIN}/workspaces"

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

function run_user_group() {
runuser -u "${NB_USER}" -g "$(id -gn "${NB_USER}")" -G "users" -- "$@"
}

This might not be required when run as root with -e NB_USER=root -e NB_UID=0 -e NB_GID=0.

@bernt-matthias I will look into this and provide a patched image so you can test it on the HPC.

@bernt-matthias
Copy link

Excellent. Thanks a lot

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

@bernt-matthias Try with

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc

Thanks for your feedback.

@bernt-matthias
Copy link

Seems that it gets closer, but there is still some error:

Entered start.sh with args: start-notebook.sh
Running hooks in: /usr/local/bin/start-notebook.d as uid: 0 gid: 0
Sourcing shell script: /usr/local/bin/start-notebook.d/10-populate.sh
Done running hooks in: /usr/local/bin/start-notebook.d
Updated the jovyan user:
- username: jovyan       -> root
- home dir: /home/jovyan -> /home/root
Attempting to copy /home/jovyan to /home/root...
Success!
Changing working directory to /home/root/
Running hooks in: /usr/local/bin/before-notebook.d as uid: 0 gid: 0
Sourcing shell script: /usr/local/bin/before-notebook.d/10-env.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/11-home.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/12-r.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/13-update-cran.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/30-code-server.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/50-rstudio.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/71-tensorboard.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/90-limits.sh
Sourcing shell script: /usr/local/bin/before-notebook.d/95-misc.sh
Done running hooks in: /usr/local/bin/before-notebook.d
Running as root: start-notebook.sh
sudo: PERM_SUDOERS: setresuid(-1, 1, -1): Invalid argument
sudo: no valid sudoers sources found, quitting
sudo: error initializing audit plugin sudoers_audit

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

That is due to sudo in start.sh:

exec sudo --preserve-env --set-home --user "${NB_USER}" \
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}" \
PATH="${PATH}" \
PYTHONPATH="${PYTHONPATH:-}" \
"${cmd[@]}"

sudo is not required when run as root with -e NB_USER=root -e NB_UID=0 -e NB_GID=0.

Let me see what I can do...

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

@bernt-matthias I patched the image once more.

Please pull glcr.b-data.ch/jupyterlab/r/base:test-hpc and try again.

@bernt-matthias
Copy link

There seem to be two files with unexpected permissions:

Executing: jupyter lab --allow-root
[I 2024-08-08 11:59:57.298 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2024-08-08 11:59:57.310 ServerApp] jupyter_server_mathjax | extension was successfully linked.
[I 2024-08-08 11:59:57.310 ServerApp] jupyter_server_proxy | extension was successfully linked.
[I 2024-08-08 11:59:57.317 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2024-08-08 11:59:57.324 ServerApp] jupyterlab | extension was successfully linked.
[I 2024-08-08 11:59:57.324 ServerApp] jupyterlab_git | extension was successfully linked.
[I 2024-08-08 11:59:57.329 ServerApp] nbclassic | extension was successfully linked.
[I 2024-08-08 11:59:57.329 ServerApp] nbdime | extension was successfully linked.
[I 2024-08-08 11:59:57.334 ServerApp] notebook | extension was successfully linked.
[I 2024-08-08 11:59:57.343 ServerApp] Writing Jupyter server cookie secret to /home/root/.local/share/jupyter/runtime/jupyter_cookie_secret
[W 2024-08-08 11:59:57.344 ServerApp] notebook_shim | error linking extension: Permissions assignment failed for secure file: '/home/root/.local/share/jupyter/runtime/jupyter_cookie_secret'. Got '0o655' instead of '0o0600'.
    Traceback (most recent call last):
      File "/usr/local/lib/python3.12/site-packages/traitlets/traitlets.py", line 632, in get
        value = obj._trait_values[self.name]
                ~~~~~~~~~~~~~~~~~^^^^^^^^^^^
    KeyError: 'cookie_secret'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/manager.py", line 346, in link_extension
        extension.link_all_points(self.serverapp)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/manager.py", line 228, in link_all_points
        self.link_point(point_name, serverapp)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/manager.py", line 218, in link_point
        point.link(serverapp)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/manager.py", line 140, in link
        linker(serverapp)
      File "/usr/local/lib/python3.12/site-packages/notebook_shim/nbserver.py", line 109, in _link_jupyter_server_extension
        members = diff_members(serverapp, nbapp)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/notebook_shim/nbserver.py", line 62, in diff_members
        m1 = public_members(obj1)
             ^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/notebook_shim/nbserver.py", line 56, in public_members
        members = inspect.getmembers(obj)
                  ^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/inspect.py", line 608, in getmembers
        return _getmembers(object, predicate, getattr)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/inspect.py", line 586, in _getmembers
        value = getter(object, key)
                ^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/traitlets/traitlets.py", line 687, in __get__
        return t.cast(G, self.get(obj, cls))  # the G should encode the Optional
                         ^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/traitlets/traitlets.py", line 635, in get
        default = obj.trait_defaults(self.name)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/traitlets/traitlets.py", line 1897, in trait_defaults
        return t.cast(Sentinel, self._get_trait_default_generator(names[0])(self))
                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/traitlets/traitlets.py", line 1241, in __call__
        return self.func(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/serverapp.py", line 1158, in _default_cookie_secret
        self._write_cookie_secret_file(key)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/serverapp.py", line 1167, in _write_cookie_secret_file
        with secure_write(self.cookie_secret_file, True) as f:
      File "/usr/local/lib/python3.12/contextlib.py", line 137, in __enter__
        return next(self.gen)
               ^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_core/paths.py", line 1007, in secure_write
        raise RuntimeError(msg)
    RuntimeError: Permissions assignment failed for secure file: '/home/root/.local/share/jupyter/runtime/jupyter_cookie_secret'. Got '0o655' instead of '0o0600'.
[I 2024-08-08 11:59:57.464 ServerApp] notebook_shim | extension was successfully loaded.
[I 2024-08-08 11:59:57.469 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2024-08-08 11:59:57.469 ServerApp] jupyter_server_mathjax | extension was successfully loaded.
[I 2024-08-08 11:59:57.512 ServerApp] jupyter_server_proxy | extension was successfully loaded.
[I 2024-08-08 11:59:57.516 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2024-08-08 11:59:57.618 LabApp] JupyterLab extension loaded from /usr/local/lib/python3.12/site-packages/jupyterlab
[I 2024-08-08 11:59:57.618 LabApp] JupyterLab application directory is /usr/local/share/jupyter/lab
[I 2024-08-08 11:59:57.620 LabApp] Extension Manager is 'pypi'.
[I 2024-08-08 11:59:57.674 ServerApp] jupyterlab | extension was successfully loaded.
[I 2024-08-08 11:59:57.678 ServerApp] jupyterlab_git | extension was successfully loaded.
[I 2024-08-08 11:59:57.691 ServerApp] nbclassic | extension was successfully loaded.
[I 2024-08-08 11:59:58.207 ServerApp] nbdime | extension was successfully loaded.
[I 2024-08-08 11:59:58.219 ServerApp] notebook | extension was successfully loaded.
[I 2024-08-08 11:59:58.220 ServerApp] Serving notebooks from local directory: /home/root
[I 2024-08-08 11:59:58.220 ServerApp] Jupyter Server 2.14.2 is running at:
[I 2024-08-08 11:59:58.220 ServerApp] http://fee50fb4c9d3:8888/lab?token=3f9ffcf78e92c325035d3a158fc13976b6b8f4e03e1debf3
[I 2024-08-08 11:59:58.220 ServerApp]     http://127.0.0.1:8888/lab?token=3f9ffcf78e92c325035d3a158fc13976b6b8f4e03e1debf3
[I 2024-08-08 11:59:58.220 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

  _   _          _      _
 | | | |_ __  __| |__ _| |_ ___
 | |_| | '_ \/ _` / _` |  _/ -_)
  \___/| .__/\__,_\__,_|\__\___|
       |_|
                                                                           
Read the migration plan to Notebook 7 to learn about the new features and the actions to take if you are using extensions.

https://jupyter-notebook.readthedocs.io/en/latest/migrate_to_notebook7.html

Please note that updating to Notebook 7 might break some of your extensions.

Traceback (most recent call last):
  File "/usr/local/bin/jupyter-lab", line 8, in <module>
    sys.exit(main())
             ^^^^^^
  File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/application.py", line 623, in launch_instance
    serverapp.start()
  File "/usr/local/lib/python3.12/site-packages/jupyter_server/serverapp.py", line 3120, in start
    self.start_app()
  File "/usr/local/lib/python3.12/site-packages/jupyter_server/serverapp.py", line 3021, in start_app
    self.write_server_info_file()
  File "/usr/local/lib/python3.12/site-packages/jupyter_server/serverapp.py", line 2827, in write_server_info_file
    with secure_write(self.info_file) as f:
  File "/usr/local/lib/python3.12/contextlib.py", line 137, in __enter__
    return next(self.gen)
           ^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/jupyter_core/paths.py", line 1007, in secure_write
    raise RuntimeError(msg)
RuntimeError: Permissions assignment failed for secure file: '/home/root/.local/share/jupyter/runtime/jpserver-2.json'. Got '0o655' instead of '0o0600'.

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

@bernt-matthias Try with

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_UMASK=0077 \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

Or (better)

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e JUPYTER_ALLOW_INSECURE_WRITES=true \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

Or (alternatively)

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e export JUPYTER_RUNTIME_DIR=/directory/not/in/mounted/filesystem \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc

should /home/root be mounted somehow.

Cross reference:

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

You have quite an edge case here... (Openshift?)

Because on a regular Linux machine, the mentioned files have permission 0o0600 inside the container – with both Docker and Podman.

@bernt-matthias
Copy link

Or (better)

podman run --rm \
  -p 8888:8888 \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e JUPYTER_ALLOW_INSECURE_WRITES=true \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc

This worked :)

@bernt-matthias
Copy link

Could you explain to me the connection between jupyter and rocker/rstudio?

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

Could you explain to me the connection between jupyter and rocker/rstudio?

There is none. These are separate projects.

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

rocker/binder uses jupyter to serve RStudio.

The Jupyter Docker Stacks do not include RStudio.

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

What makes this project different:

  1. Multi-arch: linux/amd64, linux/arm64/v8
    ℹ️ Runs on Apple M series using Docker Desktop.
  2. Base image: Debian instead of Ubuntu
    ℹ️ CUDA-based images use Ubuntu.
  3. IDE: code-server next to RStudio
    ℹ️ code-server = Code - OSS in the browser.
  4. Just Python – no Conda / Mamba

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

Does everything work as expected when you access in a browser?

What about the permissions? Could you please open the JupyterLab Terminal, execute

mkdir test-folder
touch test-file
ls -al

and post the output here?


Alternative:

podman run -it --rm \
  -u root \
  -e NB_USER=root \
  -e NB_UID=0 \
  -e NB_GID=0 \
  -e JUPYTER_ALLOW_INSECURE_WRITES=true \
  -e NOTEBOOK_ARGS="--allow-root" \
  glcr.b-data.ch/jupyterlab/r/base:test-hpc bash

(For direct Zsh access you should install the recommended font on the host)

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

@bernt-matthias I will do some further tests. If nothing unexpected occurs, all JupyterLab docker stacks will be patched tomorrow.

@bernt-matthias
Copy link

and post the output here?

Everything as expected:

total 328
drwxr-xr-x 12 root root   4096 Aug  8 15:36 .
drwxr-xr-x  4 root root   4096 Aug  8 15:34 ..
-rwxr-xr-x  1 root root    220 Mar 29 19:40 .bash_logout
-rwxr-xr-x  1 root root   3971 Aug  8 08:34 .bashrc
drwxr-xr-x  3 root root   4096 Aug  8 15:36 .cache
drwxr-xr-x  3 root root   4096 May 22 17:30 .config
drwxr-xr-x  2 root root   4096 Aug  8 15:35 .ipython
drwxr-xr-x  3 root root   4096 Aug  8 15:35 .jupyter
drwxr-xr-x  4 root root   4096 Mar 17  2023 .local
drwxr-xr-x 12 root root   4096 Aug  8 08:34 .oh-my-zsh
-rwxr-xr-x  1 root root  95862 Jun 21 11:20 .p10k.zsh
-rwxr-xr-x  1 root root     26 Aug  8 08:34 .populated
-rwxr-xr-x  1 root root    850 Jan 25  2024 .profile
drwxr-xr-x  2 root root   4096 Aug  8 15:34 projects
-rwxr-xr-x  1 root root      0 Aug  8 15:36 test-file
drwxr-xr-x  2 root root   4096 Aug  8 15:36 test-folder
drwxr-xr-x  2 root root   4096 Aug  8 15:34 working
drwxr-xr-x  2 root root   4096 Aug  8 15:34 workspaces
-rwxr-xr-x  1 root root  50755 Aug  8 15:36 .zcompdump-03e37b91b62c-5.9
-rwxr-xr-x  1 root root 117616 Aug  8 15:36 .zcompdump-03e37b91b62c-5.9.zwc
-rwxr-xr-x  1 root root     86 Aug  8 15:36 .zsh_history
-rwxr-xr-x  1 root root   4590 Aug  8 08:34 .zshrc

@bernt-matthias
Copy link

But I did not notice the following in the terminal running the container

[W 2024-08-08 15:38:13.640 ServerApp] 403 GET /api/events/subscribe (@10.0.2.100) 116.88ms referer=None
[W 2024-08-08 15:38:14.004 LabApp] Could not determine jupyterlab build status without nodejs
[W 2024-08-08 15:38:14.224 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-08-08 15:38:14.226 ServerApp] 403 GET /api/events/subscribe (@10.0.2.100) 11.86ms referer=None
[E 2024-08-08 15:38:14.655 ServerApp] Uncaught exception in write_error
    Traceback (most recent call last):
      File "/usr/local/lib/python3.12/site-packages/tornado/web.py", line 1298, in send_error
        self.write_error(status_code, **kwargs)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/base/handlers.py", line 741, in write_error
        html = self.render_template("error.html", **ns)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/base/handlers.py", line 667, in render_template
        return template.render(**ns)
               ^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 1304, in render
        self.environment.handle_exception()
      File "/usr/local/lib/python3.12/site-packages/jinja2/environment.py", line 939, in handle_exception
        raise rewrite_traceback_stack(source=source)
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/templates/error.html", line 1, in top-level template code
        {% extends "page.html" %}
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/templates/page.html", line 9, in top-level template code
        {% block favicon %}<link id="favicon" rel="shortcut icon" type="image/x-icon" href="{{ static_url("favicon.ico") }}">
        ^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/templates/page.html", line 9, in block 'favicon'
        {% block favicon %}<link id="favicon" rel="shortcut icon" type="image/x-icon" href="{{ static_url("favicon.ico") }}">
        ^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server/extension/handler.py", line 118, in static_url
        raise Exception(msg) from None
    Exception: This extension doesn't have any static paths listed. Check that the extension's `static_paths` trait is set.

@benz0li
Copy link
Member Author

benz0li commented Aug 8, 2024

There will be one or the other error message. The question is whether code-server and RStudio work smoothly.

@bernt-matthias
Copy link

Code server worked. RStudio failed.

@benz0li
Copy link
Member Author

benz0li commented Aug 9, 2024

Code server worked. RStudio failed.

What does it output/log?

@bernt-matthias
Copy link

After the link + token is reported the output is:

[I 2024-08-08 20:54:58.846 ServerApp] Skipped non-installed server(s): bash-language-server, dockerfile-language-server-nodejs, javascript-typescript-langserver, jedi-language-server, julia-language-server, pyright, python-language-server, sql-language-server, texlab, typescript-language-server, unified-language-server, vscode-css-languageserver-bin, vscode-html-languageserver-bin, vscode-json-languageserver-bin, yaml-language-server
[W 2024-08-08 20:55:09.487 LabApp] Could not determine jupyterlab build status without nodejs
[E 2024-08-08 20:55:42.250 ServerApp] Uncaught exception GET /rstudio/ (10.0.2.100)
    HTTPServerRequest(protocol='http', host='127.0.0.1:8888', method='GET', uri='/rstudio/', version='HTTP/1.1', remote_ip='10.0.2.100')
    Traceback (most recent call last):
      File "/usr/local/lib/python3.12/site-packages/tornado/web.py", line 1790, in _execute
        result = await result
                 ^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server_proxy/websocket.py", line 101, in get
        return await self.http_get(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server_proxy/handlers.py", line 727, in http_get
        return await ensure_async(self.proxy(self.port, path))
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async
        result = await obj
                 ^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/jupyter_server_proxy/handlers.py", line 899, in proxy
        await self.ensure_process()
      File "/usr/local/lib/python3.12/site-packages/jupyter_server_proxy/handlers.py", line 891, in ensure_process
        await proc.kill()
      File "/usr/local/lib/python3.12/site-packages/simpervisor/process.py", line 307, in kill
        return await self._signal_and_wait(signum)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/usr/local/lib/python3.12/site-packages/simpervisor/process.py", line 275, in _signal_and_wait
        self.proc.send_signal(signum)
      File "/usr/local/lib/python3.12/site-packages/simpervisor/process.py", line 59, in send_signal
        self._proc.send_signal(signum)
      File "/usr/local/lib/python3.12/asyncio/subprocess.py", line 140, in send_signal
        self._transport.send_signal(signal)
      File "/usr/local/lib/python3.12/asyncio/base_subprocess.py", line 145, in send_signal
        self._check_proc()
      File "/usr/local/lib/python3.12/asyncio/base_subprocess.py", line 142, in _check_proc
        raise ProcessLookupError()
    ProcessLookupError
[E 2024-08-08 20:55:42.377 ServerApp] {
      "Host": "127.0.0.1:8888",
      "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
      "Referer": "http://127.0.0.1:8888/lab",
      "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0"
    }
[E 2024-08-08 20:55:42.377 ServerApp] 500 GET /rstudio/ ([email protected]) 15372.30ms referer=http://127.0.0.1:8888/lab
[W 2024-08-08 20:56:30.160 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-08-08 20:56:30.162 ServerApp] 403 GET /api/events/subscribe (@10.0.2.100) 7.34ms referer=None
[W 2024-08-08 20:56:30.639 LabApp] Could not determine jupyterlab build status without nodejs
[W 2024-08-08 20:56:31.341 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-08-08 20:56:31.343 ServerApp] 403 GET /api/events/subscribe (@10.0.2.100) 3.04ms referer=None

@benz0li
Copy link
Member Author

benz0li commented Aug 9, 2024

RStudio should work once v2024.10 is out and

is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants