Amazon Glacier에 백업해야하는 cPmove 파일 디렉토리가있는 CentOS 서버가 온라인 상태입니다. GUI가없는 명령 줄 액세스 만 있습니다.
파일을 업로드하는 데 비교적 사용하기 쉬운 명령 줄 클라이언트가 필요합니다. 예를 들어이 간단한 bash 스크립트와 함께 dropbox_uploader.sh ( https://github.com/andreafabrizi/Dropbox-Uploader )를 사용했습니다.
#!/bin/bash
find /backup_folder -maxdepth 1 -name "cpmove-*.tar.gz" | while read CPMOVE
do
./dropbox_uploader.sh upload ${CPMOVE}
done
나는 이것을 보았다 : https://github.com/carlossg/glacier-cli 하지만 나는 서버에 자바가 설치되어 있지 않으며 최근 모든 보안 문제로 인해 설치를 약간 망설입니다.
파이썬과 루비가 있습니다.
me@server [/home]# python -V
Python 2.4.3
root@server [/home]# ruby --version
ruby 1.8.7 (2012-06-29 patchlevel 370) [i686-linux]
me@server [/home]#
루비 (바람직한) 또는 파이썬 또는 다른 언어 (바람직하지 않은) 아마존 빙하 명령 줄 클라이언트가 있습니까?)