I have java war file which is stored in s3 now I need to copy that file to the tomcat6 var/lib/webapps folder using ssh through my command line is it possible to do that. Or how do I send the war file my to remote instance tomcat6 folder. I failed to do that using scp. scp -r localfile.txt username@192.168.0.1:/home/username/
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
migrated from stackoverflow.com Apr 1 '11 at 13:02
|
You can use the s3cmd command line tool to do just that. Ensure you have s3cmd installed:
Then, from the command line, you can do lots of things (including downloading a file). Run this to configure the tool for your S3 credentials:
Then you simply run:
...to retrieve your file to the location of your choice. Reference of all commands is here: |
|||
|
|