SFTP 伺服器與開發機檔案傳輸工具

2021-07-23 14:46:17 字數 414 閱讀 5772

sftp(ssh file transfer protocol)是ssh協議的乙個拓展,用於安全的訪問檔案,傳輸檔案等等

如何使用?

1 首先需要安裝ssh,mac上面預設是安裝了的

2 mac系統,可以直接system preferences->sharing and make sure the remote login被勾選住,for security,可以在allow for users裡面配置你想允許遠端登入的使用者

3 check系統裡的ssh是不是已經started了

ps -e|grep ssh

4 sftp -p port username@ip/domain  登入到機器上

5 用get or put 命令傳輸檔案,不清楚自己在哪個目錄,可以pwd檢視

6 exit退出登入

伺服器檔案傳輸

scp r 在本地向伺服器傳輸檔案 從本地上傳檔案到伺服器,終端命令應執行在本機上 scp 本地檔案的路徑 伺服器使用者名稱 伺服器位址 伺服器上存放檔案的路徑 scp scp1.png root 119.23.75.150 home admin scp r 本地資料夾的路徑 伺服器使用者名稱 伺服...

伺服器登入與檔案傳輸

1 使用金鑰上傳 scp i ssh id myserver rsa.pem r 資料夾 root 39.96.71.193 伺服器位址 如 scp i ssh id myserver rsa.pem r storybook static root 39.96.71.193 home project...

伺服器間檔案傳輸

單傳檔案 scp home tmp 1.txt username 192.127.124.123 home test 傳資料夾 包括資料夾本身 scp r home tmp username 192.127.124.123 home test 傳資料夾下的所有檔案 不包含資料夾本身 scp home...