https://github.com/zonca/remotespawner
Remote Spawner class for JupyterHub to spawn IPython notebooks and a remote server and tunnel the port via SSH
https://github.com/zonca/remotespawner
Last synced: 5 months ago
JSON representation
Remote Spawner class for JupyterHub to spawn IPython notebooks and a remote server and tunnel the port via SSH
- Host: GitHub
- URL: https://github.com/zonca/remotespawner
- Owner: zonca
- Archived: true
- Created: 2015-02-05T01:40:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-05T22:01:47.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T18:47:36.645Z (about 2 years ago)
- Language: Python
- Homepage: http://zonca.github.io/2015/04/jupyterhub-hpc.html
- Size: 25.4 KB
- Stars: 26
- Watchers: 5
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Development stopped
Please use for spawning Jupyter Notebooks via SLURM/Torque et similia.
# remotespawner
Remote Spawner class for JupyterHub to spawn IPython notebooks and a remote server and tunnel the port via SSH
Need to have passwordless SSH access to remote server, need to setup `jupyterhub_config.py`:
```python
c.RemoteSpawner.server_url = "docker3" # or IP
c.RemoteSpawner.server_user = "zonca"
```
And needs the 8081 port of the local machine that runs `jupyterhub` to be forwarded to
the remote server.
Currently in development, it sort of works.
See the `qsub` branch for a proof-of-concept integration with Torque.