welcome: please sign in

Diff for "FileTransfer"

Differences between revisions 2 and 3
Revision 2 as of 2005-10-10 11:39:39
Size: 1870
Editor: 195
Comment:
Revision 3 as of 2006-05-22 22:36:17
Size: 1881
Editor: pool-71-255-181-164
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
You can also use plain ''scp'', but it overwrites destination files and is usually only applicable when you are uploading new files to hcoop:
Line 9: Line 10:
You can also use plain ''scp'', but it overwrites destination files and is usually only applicable when you are uploading new files to hcoop:
Line 13: Line 13:
You can run command-line sftp (Secure FTP) tool:
Line 14: Line 15:
You can run command-line sftp (Secure FTP) tool:
Line 21: Line 21:
With GUI FTP clients, SFTP connection is possible if the clients support "Secure FTP" or similar as the connection method. In Unix/Gnome, you could use for example ''gftp''; for Microsoft Windows, example clients are the free [http://WinSCP.sourceforge.net WinSCP], or proprietary FTP Voyager.
Line 22: Line 23:
With GUI FTP clients, SFTP connection is possible if the clients support "Secure FTP" or similar as the connection method. In Unix/Gnome, you could use for example ''gftp''; for Microsoft Windows, example clients are the free WinSCP.sourceforge.net, or proprietary FTP Voyager.

We also started supporting the usual FTP protocol, but you need to request the ability to use it
(see [https://members.hcoop.net Member Portal]), and we only allow "SSL Auth" method (see FtpConfiguration).
Here's an example:
We also started supporting the usual FTP protocol, but you need to request the ability to use it (see [https://members.hcoop.net Member Portal]), and we only allow "SSL Auth" method (see FtpConfiguration). Here's an example:
Line 32: Line 29:
Name (hcoop.net:user):  Name (hcoop.net:user):

The recommended way (and possibly only reasonable way at the moment) to upload content from your computer to our servers (or the other way around if you want to make backups) is to use scp. It is a secure and easy way to copy single files or whole directory trees.

If all you want is to keep a directory at hcoop in sync with your local changes, you should consider using rsync. It can significantly reduce bandwidth usage by only transmitting the differences between the two trees. Since version 2.6 rsync uses scp for file transfer by default. For older versions you have to use the -e (--rsh) option. For example:

rsync -avz -e ssh ~/html/hcoop/* username@hcoop.net:public_html

You can also use plain scp, but it overwrites destination files and is usually only applicable when you are uploading new files to hcoop:

scp -r ~/html/hcoop/* username@hcoop.net:public_html

You can run command-line sftp (Secure FTP) tool:

sftp hcoop.net
Connecting to hcoop.net...
Password:
sftp> help

With GUI FTP clients, SFTP connection is possible if the clients support "Secure FTP" or similar as the connection method. In Unix/Gnome, you could use for example gftp; for Microsoft Windows, example clients are the free [http://WinSCP.sourceforge.net WinSCP], or proprietary FTP Voyager.

We also started supporting the usual FTP protocol, but you need to request the ability to use it (see [https://members.hcoop.net Member Portal]), and we only allow "SSL Auth" method (see FtpConfiguration). Here's an example:

ftp hcoop.net
Connected to hcoop.net.
220 fyodor.hcoop.net FTP server ready.
Name (hcoop.net:user):
234 AUTH SSL OK.
[SSL Cipher AES256-SHA]
331 Password required for user.
Password:
User logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> help

FileTransfer (last edited 2011-11-28 06:25:43 by ClintonEbadi)