= How to establish passwordless SSH login between two hosts = [[TracNav(doc/install/toc)]] To ensure proper function of [wiki:doc/app/palmrun palmrun] for remote jobs, passwordless login must be established in both directions, from the local to the remote host as well as from the remote to the local host! This is required by palmrun for carrying out several crucial tasks, e.g. for automatic submission of restart runs). Please carry out the following steps: 1. From your local host login on your remote host and create a pair of private/public ssh-keys (replace and accordingly): {{{ ssh @ ssh-keygen -t dsa }}} Enter for any query, until the shell-prompt appears again. 2. On your remote host, define the public key as one of the authorized keys to access the system: {{{ cd ~/.ssh cat id_dsa.pub >> authorized_keys }}} 3. Copy the public key to the respective local host (replace and accordingly): {{{ ssh-copy-id -i id_dsa.pub @ }}} 4. Repeat the first 3 steps vice versa starting from your remote host. \\