-
[SFTP] transfer files from a server to a local device카테고리 없음 2024. 11. 20. 15:14
To connect to a server using SFTP and transfer a file from the server to your local PC, follow these steps:
Step 1: Prepare the Required Information
- Server details:
- Username (e.g.,
root
ordaesoo
) - Server IP address or hostname (e.g.,
213.173.108.222
) - Port (default is
22
, but it may differ if configured differently on your server).
- Username (e.g.,
- Authentication:
- Password or an SSH private key file (e.g.,
~/.ssh/id_ed25519
).
- Password or an SSH private key file (e.g.,
Step 2: Using the Command Line
Most Linux and macOS systems come with SFTP pre-installed. On Windows, you can use tools like PowerShell or
sftp
in an SSH-compatible terminal.Steps:
Open a terminal on your local machine.
Use the following command to connect to the server:
sftp -i /path/to/private/key username@server_ip
Example using your server details:
sftp -i ~/.ssh/id_ed25519 daesoo@213.173.108.222
Once connected, navigate to the directory on the server where your file is located:
cd /path/to/remote/directory
Use the
get
command to download the file to your local machine:get remote_filename local_filename
Example:
get data.txt ~/Downloads/data.txt
Exit the SFTP session:
exit
- Server details: