Transferring files over SFTP: Difference between revisions

From ULYSSIS documentation
(Created page with "=Transferring your files over SFTP= ULYSSIS doesn't support ftp, because it is insecure. However, we support sftp (ftp over ssh). This works similar as ssh. On the server, y...")
 
(Redirected page to Accessing your files)
Tag: New redirect
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
=Transferring your files over SFTP=
#REDIRECT [[Accessing your files]]
 
ULYSSIS doesn't support ftp, because it is insecure. However, we support sftp (ftp over ssh).
This works similar as ssh.
 
On the server, your files are located in <code>/home/group/username/</code>. For a normal user with username <code>username/</code> this will be <code>/home/user/username/</code>, for an organisation with username <code>organisation/</code> this will be <code>/home/org/organisation/</code> etc.
 
==Non-graphical methods==
 
The most common way to transfer files is with a terminal by using the <code>scp</code> command.<br/>
Copying file to host:<br>
<code>scp SourceFile user@host:directory/TargetFile</code><br>
Copying file from host:<br>
<code>scp user@host:directory/SourceFile TargetFile
scp -r user@host:directory/SourceFolder TargetFolder</code>
 
You don't need to use the full path to your file. You may you the relative path, starting from your home directory. For example:<br>
<code>scp index.html user@ssh1.ulyssis.org:www/index.html</code>
 
==Graphical methods==
 
The graphical methods are explained in [[Accessing your files]].

Latest revision as of 17:09, 9 August 2021