-
Notifications
You must be signed in to change notification settings - Fork 13
2. How to connect to spinquest cluster
Yongbin Feng edited this page Oct 12, 2024
·
2 revisions
After running
kinit [email protected]
Follow:
ssh -KXY [email protected]
or if you need a jupyter notebook to run plotting code interactively (is better to just do this locally), one can connect to the cluster via
ssh -KXY -L localhost:9999:localhost:9999 [email protected]
where 9999 can be replaced with other port numbers.
And then, in the remote machine, assuming that you have jupyter notebook setup:
jupyter notebook --no-browser --port 9999 --ip 127.0.0.1
Change the 9999
to the corresponding port number when running ssh.
Note that for window users the steps for running remote notebooks might be different.