Automatic Upload and Download of SFTP Files_Shell Script

Source: Internet
Author: User
Keywords sftp files linux sftp script shell script
Client: kkweb@192.168.1.10
Server: kkdev@192.168.1.11

Implementation idea: Generate public and private key files through SSH, save the public key file to the server, and implement key verification in scripts without interactive password input, and realize automated script execution.

Generate SSH keys
$ ssh-keygen

Entering all the way, SSH private key file (id_rsa) and public key file (id_rsa.pub) will be generated in the home directory of kkweb user, as shown below:

img

2. Copy id_rsa.pub to the kkdev@192.168.1.11 directory and change the file name to authorized_keys (interlaced writing by multiple hosts is sufficient), as shown below

img

3. Run the script (login.sh) under the user kkweb@192.168.1.10:


#!/bin/bash
sftp kkdev@192.168.1.11<<EOF
-get /data/kkweb/kkweb_dev/build/ROOT.war /home/dev/
quit
EOF


You can download ROOT.war@192.168.1.11 to 192.168.1.10:/home/dev/ directory
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.