2015-01-16 8 views
4

RunAbove에서 제공하는 Swift Object Storage 서비스에 백업 파일을 복제하려고합니다. 컨테이너의 이름은 "백업"이며 백업을 배치 할 "웹"이라는 가상 폴더가 있습니다.복제본을 사용하여 Swift Pseudo 폴더에 업로드

이중성 버전 : 0.6.24
파이썬 버전 : 2.7.3
파이썬 keystoneclient 1.0.0
파이썬 swiftclient 2.3.1

나는 다음과 같은 명령을 시도 필요한 환경 변수를 설정 한 후 :

Listing of 'backup/web/' failed (attempt 1): JSONDecodeError: Expecting value: line 1 column 1 (char 0) 
:

duplicity --no-encryption /var/www swift://backup/web/ 

다음과 같은 오류를 반환

그때 나는 시도 :

파이썬 오류 반환
duplicity --no-encryption --file-prefix web/ /var/www swift://backup 

:

Local and Remote metadata are synchronized, no sync needed. 
Last full backup date: none 
No signatures found, switching to full backup. 
Traceback (most recent call last): 
File "/usr/bin/duplicity", line 1509, in <module> 
with_tempdir(main) 
File "/usr/bin/duplicity", line 1503, in with_tempdir 
fn() 
File "/usr/bin/duplicity", line 1352, in main 
do_backup(action) 
File "/usr/bin/duplicity", line 1478, in do_backup 
full_backup(col_stats) 
File "/usr/bin/duplicity", line 545, in full_backup 
globals.backend) 
File "/usr/bin/duplicity", line 420, in write_multivol 
sig_outfp.to_partial() 
File "/usr/lib/python2.7/dist-packages/duplicity/dup_temp.py", line 168, in to_partial 
self.tdp.rename(self.dirpath.append(self.partname)) 
File "/usr/lib/python2.7/dist-packages/duplicity/path.py", line 612, in rename 
os.rename(self.name, new_path.name) 
OSError: [Errno 2] No such file or directory 

어떻게 OpenStack은 스위프트의 의사 폴더에 I 백업 파일을 사용하여 않는 이중성을?

답변

0

이 문제는 이중성의 v0.7.08에서 해결 언제나 환영 잠재적 인 솔루션

  • Merged in lp:~ghoz/duplicity/swift-prefix
    • adds the abiliy to use path in the swift backend, in order to have multiple backups to the same container neatly organized.
+1

링크 (http://duplicity.nongnu.org/CHANGELOG 참조)하지만, 링크가 더 이상 사용할 경우 미래의 방문자에 대한 몇 가지 세부 사항을 추가주세요. –