To mount your storage box at Hetzner with sshfs, use:
sshfs -p23 $HETZNERUSER@$HETZNERUSER.your-storagebox.de: $HOME/mnt/hetzner/ -o allow_other,reconnect,_netdev,ServerAliveInterval=15,ServerAliveCountMax=3
Zufällig gesammelte Themen
To mount your storage box at Hetzner with sshfs, use:
sshfs -p23 $HETZNERUSER@$HETZNERUSER.your-storagebox.de: $HOME/mnt/hetzner/ -o allow_other,reconnect,_netdev,ServerAliveInterval=15,ServerAliveCountMax=3
The goal is to connect Keepass2Android (used version 1.07b-r0) on Android to the Keepass database on a Hetzner Storage Box. In https://blog.chloesoe.ch/?p=546 it is described, how to connect and store your Keepass DB to the Storage Box.
Now we want to connect the mobile phone to that database.
pubkey_android (you could change the key name at the end of the line of thet new file if you like).read -p "Enter your Hetzner's username: " USERNAME
rsync --progress -e 'ssh -p23' $USERNAME@$USERNAME.your-storagebox.de:.ssh/authorized_keys .
cat pubkey_android >> authorized_keys
rsync --progress -e 'ssh -p23' authorized_keys $USERNAME@$USERNAME.your-storagebox.de:.ssh/
Unfortunately sshfs seems not to work anymore.
To get it run, first copy your public key to your storage box:
https://wiki.hetzner.de/index.php/Backup_Space_SSH_Keys.
Then to run rsync have a look at https://wiki.hetzner.de/index.php/Storage_Boxes#rsync.