Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

The address of the access node teran is teran.srce.hr, and it is accessed using the SSH protocol. Direct access to the cluster is possible only via CARNet CARNET network.

The address of the dedicated server keybella for connections outside of CARNet CARNET network is keybella.srce.hr, and it is accessed using the SSH protocol as well.

Image Removed Image Added Windows

...

Applications used in the tutorials below are free and can be downloaded from their respective websites:

Accessing from within

...

CARNET network or via parent institution's VPN

Connecting to teran

...

Connecting to teran can be easily done by using PuTTY:

...

  • in the Host name field you are required to fill in teran.srce.hr, and in the field Port number, you are required to enter 22,
  • In in User name and Password fields you are required to fill in your username and password and to click Login,
  • parallel view of your local machine and the remote server will be displayed, inside which you can use the usual copy and paste.

Multimedia
nameputty-winscp.mp4
height56.25%

Accessing

...

outside CARNET network or w/o parent institution's VPN

Creating SSH keys

...

If you need to access Isabella cluster outside CARNet CARNET network, you have to create SSH keys and send us a request containing your public key at isabella@srce.hr. Request has to be sent from the email you used for user-registration.

In order to access the cluster outside CARNet CARNET network or when you are not using VPN of your parent institution, you are required to create SSH keys to access keybella, which will act as a tunnel towards teran. SSH keys are easily created by using PuTTYgen.

  • When when using default settings, click Generate.,
  • Two two keys will be created:
    • private key, with .ppk extension,
    • public key, without any extensions,
  • In in order to secure your key, enter a Key passphrase and confirm it in the Confirm passphrase field.,
  • Click click Save public key and Save private key to save them into a directory of your liking.,
  • Email email us a public key at isabella@srce.hr
Warning

When creating SSH keys, use a strong passphrase in order to secure your private key.

Do not email us your your private key (the one with .ppk extension) - keep it locally on your machine and never give it to third parties.

If your private is lost or compromised, email us urgently at isabella@srce.hr

...

  • in the category Session, in the field Host Name (or IP address) you are required to enter <username>@keybella.srce.hr,
  • in the category Connection→SSH→Auth, in the field Private key file for authentication, enter (or browse to) the path to your private key (.ppk).

...

  • in the category Session, in the field Host Name (or IP address) you are required to enter <korisnik <username>@keybella.srce.hr,
  • in the category Connection→SSH→Auth, in the field Private key file for authentification, enter (or browse to) the path to your private key (.ppk).,
  • in the category Connection→SSH→Tunnels, in the field Source port enter 2222, and in the field Destination enter teran.srce.hr:22 and click Add,
  • click Open.

After the connection is established, do not exit the terminal. Open WinSCP application.:

  • in the Host name field, enter 127.0.0.1, and in the Port number field, enter 2222,
  • in User name and Password fields, you are required to enter your username and password and to click Login,
  • parallel view of your local machine and the remote server will be displayed, inside which you can use the usual copy and paste.

Multimedia
nameputty-keybella-scp.mp4
height56.25%

Image Removed Image Added Linux

...

Accessing from within

...

CARNET network or via parent institution's VPN

Connecting to teran

...

Connecting to teran is simply accomplished by entering the ssh command into the terminal:

Code Block
languagetext
ssh <korisnik>@teran<username>@teran.srce.hr

... after which you are required to enter your password.

...

Multimedia
namessh.mp4
height56.25%

Copying files

...

Local machine → Isabella

...

Copying files from your local machine to Isabella is accomplished by using the scp command:

...

Multimedia
namescp-to.mp4
height56.25%

Isabella → local machine

...

Copying files from Isabella to your local machine is accomplished by using the scp command:

...

Multimedia
namex-ssh.mp4
height56.25%

Accessing outside

...

CARNET network or w/o parent institution's VPN

Creation of SSH keys

...

If you need to access Isabella cluster outside CARNet CARNET network, you have to create SSH keys and send us a request containing your public key at isabella@srce.hr. Request has to be sent from the email you used for user-registration.

In order to access the cluster outside CARNet CARNET network or when you are not using VPN of your parent institution, you are required to create SSH keys to access keybella, which will act as a tunnel towards teran.

...

Multimedia
namessh-keybella.mp4
height56.25%

Copying files

...

Local machine → Isabella

In the first terminal window, you are required to create a tunnel towards keybella. It is important to keep this terminal window open.

...

Code Block
languagetext
scp -P 2222 <korisnik>@localhost<username>@localhost:<remote-path>/<file> <local-path>

...