Access Notebook
Open in browser: https://<server-ip>:8888
Accept browser warning for self-signed certificate.
Use the password provided during setup (stored in /root/.cloudzy-creds
).
Notebook Directory
Virtual environment: /root/jupyter/venv
Default working directory: /root/jupyter
Password Authentication
Password login is enabled (no token required).
Service Control
Manage the Jupyter service with:
systemctl [start|stop|restart|status] jupyter
Remote Access
Jupyter listens on all interfaces (0.0.0.0:8888
). You can access it remotely.
You can restrict it to localhost by editing the config file: /root/jupyter.jupyter_notebook_config.py
Set: c.NotebookApp.ip =
'127.0.0.1'
Then access it securely via SSH tunnel:
ssh -L 8888:localhost:8888 user@server-ip