The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

форумы  помощь  поиск  регистрация  майллист  вход/выход  слежка  RSS
"Bacula не работает перезапись"
Вариант для распечатки  
Пред. тема | След. тема 
Форум Открытые системы на рабочей станции (Разное / Linux)
Изначальное сообщение [ Отслеживать ]

"Bacula не работает перезапись"  +/
Сообщение от katod email on 26-Дек-11, 09:21 
Здравствуйте!
Использую bacula. Архивы есть ежемесячные (полные бэкапы) и есть еженедельные (инкрементальные). Копирую все на стриммере, на кассеты! Когда кассета переполняется, то перезапись не работает почему-то, хотя стоит Recycle = yes, при этом есть еще параметр у пула AutoPrune = yes, если делаю принудительный Prune, и редактирую пул в состояние Recycle, то записывается полный бэкап! но мне то нужен инкрементальный! что делать? подскажите пожалуйста!
Volume Retention = 30 days на еженедельный (инкрементальный)
Ответить | Правка | Cообщить модератору

Оглавление

Сообщения по теме [Сортировка по времени | RSS]


1. "Bacula не работает перезапись"  +/
Сообщение от zgen (??) on 26-Дек-11, 12:03 
конфиги показывай.
Ответить | Правка | ^ к родителю #0 | Наверх | Cообщить модератору

2. "Bacula не работает перезапись"  +/
Сообщение от katod email on 26-Дек-11, 13:28 

]# cat bacula-dir.conf
#
# Default Bacula Director Configuration file
#
#  The only thing that MUST be changed is to add one or more
#   file or directory names in the Include directive of the
#   FileSet resource.
#
#  For Bacula release 5.0.0 (26 January 2010) -- redhat Enterprise release
#
#  You might also want to change the default email address
#   from root to your address.  See the "mail" and "operator"
#   directives in the Messages resource.
#

Director {                            # define myself
  Name = bacula-dir
  DIRport = 9101                # where we listen for UA connections
  QueryFile = "/usr/libexec/bacula/query.sql"
  WorkingDirectory = "/var/spool/bacula"
  PidDirectory = "/var/run"
  Maximum Concurrent Jobs = 1
  Password = "!!12345!!"         # Console password
  Messages = Daemon
}

JobDefs {
  Name = "DefaultJob"
  Type = Backup
  Level = Incremental
  Client = bacula-fd
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = File-serv-Bacula
  Messages = Standard
  Pool = File
  Priority = 10
  Write Bootstrap = "/var/spool/bacula/%c.bsr"
}


# Backup the catalog database (after the nightly save)
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultJob"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  # Arguments to make_catalog_backup.pl are:
  #  make_catalog_backup.pl <catalog-name>
  RunBeforeJob = "/usr/libexec/bacula/make_catalog_backup.pl MyCatalog"
  # This deletes the copy of the catalog
  RunAfterJob  = "/usr/libexec/bacula/delete_catalog_backup"
  Write Bootstrap = "/var/spool/bacula/%n.bsr"
  Priority = 11                   # run after main backup
}

#
# Standard Restore template, to be changed by Console program
#  Only one such job is needed for all Jobs/Clients/Storage ...
#
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client=bacula-fd
  FileSet="Full Set"
  Storage = File-serv-Bacula
  Pool = Default
  Messages = Standard
  Where = /tmp/bacula-restores
}


# List of files to be backed up
FileSet {
  Name = "Full Set"
  Include {
    Options {
      signature = MD5
    }
#
#  Put your list of files here, preceded by 'File =', one per line
#    or include an external list with:
#
#    File = <file-name
#
#  Note: / backs up everything on the root partition.
#    if you have other partitions such as /usr or /home
#    you will probably want to add them too.
#
#  By default this is defined to point to the Bacula binary
#    directory to give a reasonable FileSet to backup to
#    disk storage during initial testing.
#
    File = /usr/sbin
  }

#
# If you backup the root directory, the following two excluded
#   files can be useful
#
  Exclude {
    File = /var/spool/bacula
    File = /tmp
    File = /proc
    File = /tmp
    File = /.journal
    File = /.fsck
  }
}

#
# When to do the backups, full backup on first sunday of the month,
#  differential (i.e. incremental since full) every other sunday,
#  and incremental backups other days
Schedule {
  Name = "MonthlyCycle"
   Run = Full 1st sun at 01:05
}

Schedule {
  Name = "WeeklyCycle"
  Run = Incremental 2nd-5th sun at 1:05
}


# This schedule does the catalog. It starts after the WeeklyCycle
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Full sun at 3:10
}

# This is the backup of the catalog
FileSet {
  Name = "Catalog"
  Include {
    Options {
      signature = MD5
    }
    File = "/var/spool/bacula/bacula.sql"
  }
}

# Client (File Services) to backup
Client {
  Name = bacula-fd
  Address = servak.domain.local
  FDPort = 9102
  Catalog = MyCatalog
  Password = "!!12345!!"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 6 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}


# Definition of file storage device
Storage {
  Name = File-serv-Bacula
# Do not use "localhost" here
  Address = servak.domain.local                # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "!!12345!!"
  Device = FileStorage
  Media Type = File
}

Storage {
  Name = Quantum-TAPE
# Do not use "localhost" here
  Address = servak.domain.local                # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "!!12345!!"
  Device = LTO-3
  Media Type = LTO-3
}


# Generic catalog service
Catalog {
  Name = MyCatalog
# Uncomment the following line if you want the dbi driver
  dbdriver = "dbi:mysql"; dbaddress = 127.0.0.1; dbport = 3306
  dbname = "bacula"; dbuser = "bacula"; dbpassword = ""
}

# Reasonable message delivery -- send most everything to email address
#  and to the console
Messages {
  Name = Standard
  mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<bacula@servak.domain.local\>\" -s \"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<bacula@servak.domain.local\>\" -s \"Bacula: Intervention needed for %j\" %r"
#  mail = root@localhost = all, !skipped
  mail = postmaster@domain.ru = all, !skipped
  operator = postmaster@domain.ru = mount
  console = all, !skipped, !saved
  append = "/var/log/bacula/director.log" = all, !skipped
  catalog = all
}

#
# Message delivery for daemon messages (no job).
Messages {
  Name = Daemon
  mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula daemon message\" %r"
  mail = root@localhost = all, !skipped
  console = all, !skipped, !saved
  append = "/var/log/bacula/daemon.log" = all, !skipped
}

# Default pool definition
Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 33 days         # one year
}

Pool {
  Name = LTO-Monthly
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
}

Pool {
  Name = LTO-Weekly
  Pool Type = Backup
  AutoPrune = yes                     # Prune expired volumes
  Recycle = yes                       # Bacula can automatically recycle Volumes
  Volume Retention = 30 days          # one year
}

# File Pool definition
Pool {
  Name = File
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 30 days         # one year
  Maximum Volume Bytes = 50G          # Limit Volume size to something reasonable
  Maximum Volumes = 100               # Limit number of Volumes in Pool
  LabelFormat = "servak"
}


# Scratch pool definition
Pool {
  Name = Scratch
  Pool Type = Backup
}

#
# Restricted console used by tray-monitor to get the status of the director
#
Console {
  Name = bacula-mon
  Password = "!!12345!!"
  CommandACL = status, .status
}


# SERVER backup

Client {
  Name = server-fd
  Address = SERVER.domain.local
  FDPort = 9102
  Catalog = MyCatalog
  Password = "!!12345!!"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 6 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}


Job {
  Name = server-job
  Type = Backup
  Level = Full
  Client = server-fd
  FileSet = server-set
  Schedule = "MonthlyCycle"
  Storage = Quantum-TAPE
  Messages = Standard
  Pool = LTO-Monthly
  Priority = 10
  Write Bootstrap = "/var/spool/bacula/%c.bsr"
}

Job {
  Name = serverinc-job
  Type = Backup
  Level = Incremental
  Client = server-fd
  FileSet = server-set
  Schedule = "WeeklyCycle"
  Storage = Quantum-TAPE
  Messages = Standard
  Pool = LTO-Weekly
  Priority = 10
  Write Bootstrap = "/var/spool/bacula/%c.bsr"
}

Job {
  Name = "server-Restore"
  Type = Restore
  Client=server-fd
  FileSet=server-set
  Storage = Quantum-TAPE
  Pool = Default
  Messages = Standard
  Where = /tmp/bacula-restores
}

FileSet {
  Name = server-set
  Include {
    Options {
      #compression = Gzip
      signature = MD5
    }
    File = D:/Windows/
  }
}

Ответить | Правка | ^ к родителю #1 | Наверх | Cообщить модератору

3. "Bacula не работает перезапись"  +/
Сообщение от balabalabala email on 16-Янв-13, 15:28 
У меня та же проблема! Она актуальна по-прежнему! При чем когда проходит бэкап пул переходит в состояние Used.
Ответить | Правка | ^ к родителю #2 | Наверх | Cообщить модератору

4. "Bacula не работает перезапись"  +/
Сообщение от balabalabala email on 16-Янв-13, 16:21 
> У меня та же проблема! Она актуальна по-прежнему! При чем когда проходит
> бэкап пул переходит в состояние Used.

Решено! Просто надо поставит use more once = no (если нет).

Ответить | Правка | ^ к родителю #3 | Наверх | Cообщить модератору

Архив | Удалить

Рекомендовать для помещения в FAQ | Индекс форумов | Темы | Пред. тема | След. тема




Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2024 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру