The rsync man page notes that the “-e” or “–rsh” flag lets you “specify the remote shell to use”. This can be used to specify transfer over a non-standard SSH port using the “-p” flag to the ssh binary:
-
« Home
-
RSS Feeds
The rsync man page notes that the “-e” or “–rsh” flag lets you “specify the remote shell to use”. This can be used to specify transfer over a non-standard SSH port using the “-p” flag to the ssh binary:
Seen multiple places around the web; I’m not sure where attribution should lie, but this is not original to me: # ~/.ssh/config # Host *.amazonaws.com CheckHostIP no StrictHostKeyChecking no UserKnownHostsFile /dev/null
Unlike ssh and scp, sftp does not have a “-p” or “-P” flag to specify an alternate port. Instead, if the host you are connecting to has ssh running on a port other than 22, you need to use the “-o” flag: sftp -oPort=2345 remote.hurricane-ridge.com According to the man page, “-o” allows you to “give [...]
Links for April 25, 2009: Backup, Restore, and Disaster Recovery Solutions for PostgreSQL Database on NetApp Storage Systems – "This document describes the operation of PostgreSQL on NetApp® storage systems. This report serves as a guide to get a PostgreSQL database up and running on NetApp. This guide assumes a basic knowledge of both NetApp [...]