SFTP is recommended but in case you only have the FTP server running on remote, use below link for FTP access.
Connect to SFTP Server:
SFTP connects to ssh server. You must have the ssh server running on the remote system. Use the following command to connect example.com server as user rahul.$ sftp rahul@example.comto connect with different port
$ sftp -P 2222 rahul@example.comAfter successful authentication, you will get a sftp prompt. Where you can download or upload files securely. To get available commands type helpon sftp prompt.
sftp>help Available commands: bye Quit sftp cd path Change remote directory to 'path' chgrp grp path Change group of file 'path' to 'grp' chmod mode path Change permissions of file 'path' to 'mode' chown own path Change owner of file 'path' to 'own' df [-hi] [path] Display statistics for current directory or ... ...
Change Local and Remote Directory
First check your local and remote server directory using following commands.sftp>!pwd /home/ubuntu sftp>pwd /home/rahul
- !pwd – Used to check current directory on local system
- pwd – Used to check current directory on remote system
sftp>lcd /home/ubuntu/Downloads sftp>cd Uploads
- lcd – Used to navigate between directories on local system
- cd – Used to navigate between directories on remote system
Download Files from SFTP
Use getcommand to download file from sftp server to local system drive. Use lcd to change location of local download folder. Below command will download remotefile.txt from remote system to local system.sftp>To download files and folders recursively use -r switch with getcommand. Below command will download folder remotedir from remote system to local system recursively.get remotefile.txt
sftp>get -r remotedir
Upload Files to SFTP
Use put command to upload a file from local system to remote system. Use cd to change location of remote upload folder first. the below command will upload localfile.txt from local system to remote sftp system.sftp>To upload files and folders recursively use -r switch with putcommand. Below command will upload directory localdir and all files and sub directories to remote server.put localfile.txt
sftp>put -r localdir
Comments
Post a Comment