Bacula 백업 - 파일을 쓸 두 번째 파티션을 추가합니다.

Bacula 백업 - 파일을 쓸 두 번째 파티션을 추가합니다.

바큘라를 설정하고 싶습니다. 첫 번째 단계는 성공적이었습니다.

내 모든 백업은 /bacula/backup에 기록됩니다. 하지만 /에는 900GB밖에 없습니다. 그래서 bacula가 /sdb1/bacula/backup에도 쓰기를 원합니다. /sdb1에는 950GB의 추가 공간이 있습니다. 사용 가능한 백업 공간의 합계는 1850GB HDD여야 합니다.

글쎄, 나는 /etc/bacula/bacula-sd.conf의 다음 구성을 얻었습니다:

Storage {                             # definition of myself
  Name = backup-sd
  SDPort = 9103                  # Director's port
  WorkingDirectory = "/var/lib/bacula"
  Pid Directory = "/var/run/bacula"
  Maximum Concurrent Jobs = 20
  SDAddress = backup.example.com
}

Director {
  Name = backup-dir
  Password = "doyoureallywanttoknow"
}
Device {
  Name = FileStorage
  Media Type = File
  Archive Device = /bacula/backup
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

좋습니다. 이제 다른 장치를 추가하고 싶습니다. 다음과 같이 두 번째 항목을 추가할 수 있을 것 같습니다.

Device {
  Name = FileStorage
  Media Type = File
  Archive Device = /sdb1/bacula/backup
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

?

bacula가 900GB 이상을 쓸 수 있도록 다른 것을 변경해야 합니까? 첫 번째 900GB가 "가득 차"면 두 번째 HDD로 전환해야 합니다.

관련 정보