백업을 위해 tar 파일을 만들 때 Linux가 실패 함


0

그래서 나는 git의 백업을 만들고 싶다. 이 작업을 수행하기 위해이 스크립트를 사용하고 있습니다 (여기 : https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/raketasks/backup_restore.md ). tar 파일을 만드는 것은 결국 실패합니다.

root@gitlab-test git/gitlab# sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production --trace                                                                                
** Invoke gitlab:backup:create (first_time)                                                                                                                                                   
** Invoke environment (first_time)                                                                                                                                                            
** Execute environment                                                                                                                                                                        
** Execute gitlab:backup:create                                                                                                                                                               
** Invoke gitlab:backup:db:create (first_time)                                                                                                                                                
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:db:create                                                                                                                                                            
Dumping database ... 
Dumping MySQL database gitlab_production ... [DONE]
done
** Invoke gitlab:backup:repo:create (first_time)                                                                                                                                              
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:repo:create                                                                                                                                                          
Dumping repositories ...
 * gitlab-admin/test ... [DONE]
 * gitlab-admin/test.wiki ...  [SKIPPED]
done
** Invoke gitlab:backup:uploads:create (first_time)                                                                                                                                           
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:uploads:create                                                                                                                                                       
Dumping uploads ... 
done
** Invoke gitlab:backup:builds:create (first_time)                                                                                                                                            
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:builds:create                                                                                                                                                        
Dumping builds ... 
done
** Invoke gitlab:backup:artifacts:create (first_time)                                                                                                                                         
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:artifacts:create                                                                                                                                                     
Dumping artifacts ... 
done
** Invoke gitlab:backup:lfs:create (first_time)                                                                                                                                               
** Invoke environment                                                                                                                                                                         
** Execute gitlab:backup:lfs:create                                                                                                                                                           
Dumping lfs objects ... 
done
Creating backup archive: 1469611232_gitlab_backup.tar ... tar: uploads.tar.gz: Cannot stat: No such file or directory                                                                         
tar: Exiting with failure status due to previous errors                                                                                                                                       
creating archive 1469611232_gitlab_backup.tar failed
Backup failed                    

내가 뭘 잘못하고 있죠?

답변:


0

uploads.tar.gz (첨부 파일)을 포함하려고했지만 찾을 수없는 것 같습니다.

건너 뛰기 :

sudo -u git -H bundle exec rake gitlab:backup:create SKIP=uploads RAILS_ENV=production --trace 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.