1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SCPコマンド

Posted at

scpコマンドでサーバーからファイルをローカルに持ってくる方法

filezillaとかソフトを使ってもいいですが、なんかコマンド使った方がかっこいいよね?
ということでscpコマンドの使い方です

test@iMac-PC-0079 ~ % scp -i <秘密鍵のパス> <ユーザー名>@<IPアドレス>:<ローカルに送りたいファイルのパス>  <ローカルに保存する場所のパス>/保存する名前  
  

例(テキトーですのでご容赦願います)

test@iMac-PC-0079 ~ % scp -i ~/ssh/ssh_key/example.pem ec2-user@11.11.11.111:/tmp/web01_php-fpm_slow.log.20250826  ~/Downloads/web01_php-fpm_slow.log.20250826  


成功すると以下の様になる
web01_php-fpm_slow.log.20250826                                                                                                                                                                                                      100%   44KB 890.2KB/s   00:00  

失敗すると以下の文言が出ます
大体パス名とかが間違ってたりします
後スペースとか

No such file or directory

scpマスターにみんなもなろう!!

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?