Есть и такой ОС.
Модератор: weec
Правила форума
Убедительная просьба юзать теги [cоde] при оформлении листингов.
Сообщения не оформленные должным образом имеют все шансы быть незамеченными.
-
dr753
- проходил мимо
- Сообщения: 3
- Зарегистрирован: 2013-12-24 8:06:43
Непрочитанное сообщение
dr753 » 2014-05-05 9:42:13
Неожиданно перестали идти бэкапы в логах на сервере
Код: Выделить всё
05-May 08:03 backup-dir JobId 2833: Start Backup JobId 2833, Job=BackupLotos.2014-05-05_08.03.47_05
05-May 08:05 backup-dir JobId 2833: There are no more Jobs associated with Volume "Full". Marking it purged.
05-May 08:05 backup-dir JobId 2833: All records pruned from Volume "Full"; marking it "Purged"
05-May 08:05 backup-dir JobId 2833: Recycled volume "Full"
05-May 08:05 backup-dir JobId 2833: Using Device "FileStorage"
05-May 08:05 backup-sd JobId 2833: Recycled volume "Full" on device "FileStorage" (/home/backup), all previous data lost.
05-May 08:11 andrey-fd JobId 2833: Generate VSS snapshots. Driver="Win32 VSS", Drive(s)="CD"
05-May 08:06 backup-dir JobId 2833: Fatal error: Network error with FD during Backup: ERR=Interrupted system call
05-May 08:06 backup-dir JobId 2833: Fatal error: No Job status returned from FD.
05-May 08:06 backup-dir JobId 2833: Bacula backup-dir 5.2.6 (21Feb12):
Build OS: x86_64-pc-linux-gnu debian 7.0
JobId: 2833
Job: BackupLotos.2014-05-05_08.03.47_05
Backup Level: Full
Client: "andrey-fd" 5.2.6 (21Feb12) Microsoft Windows XP Professional Service Pack 2 (build 2600),Cross-compile,Win32
FileSet: "WinSet" 2013-04-29 12:00:00
Pool: "Full-Pool" (From Job FullPool override)
Catalog: "MyCatalog" (From Client resource)
Storage: "Win" (From command line)
Scheduled time: 05-May-2014 08:03:43
Start time: 05-May-2014 08:05:51
End time: 05-May-2014 08:06:12
Elapsed time: 21 secs
Priority: 10
FD Files Written: 0
SD Files Written: 0
FD Bytes Written: 0 (0 B)
SD Bytes Written: 0 (0 B)
Rate: 0.0 KB/s
Software Compression: None
VSS: no
Encryption: no
Accurate: no
Volume name(s): Full
Volume Session Id: 2
Volume Session Time: 1399262413
Last Volume Bytes: 193 (193 B)
Non-fatal FD errors: 1
SD Errors: 0
FD termination status: Error
SD termination status: Error
Termination: Backup Canceled
В чем может быть проблема ?
dr753
-
Хостинг HostFood.ru
-
Хостинг HostFood.ru
Тарифы на хостинг в России, от 12 рублей:
https://www.host-food.ru/tariffs/hosting/
Тарифы на виртуальные сервера (VPS/VDS/KVM) в РФ, от 189 руб.:
https://www.host-food.ru/tariffs/virtualny-server-vps/
Выделенные сервера, Россия, Москва, от 2000 рублей (HP Proliant G5, Intel Xeon E5430 (2.66GHz, Quad-Core, 12Mb), 8Gb RAM, 2x300Gb SAS HDD, P400i, 512Mb, BBU):
https://www.host-food.ru/tariffs/vydelennyi-server-ds/
Недорогие домены в популярных зонах:
https://www.host-food.ru/domains/
-
dr753
- проходил мимо
- Сообщения: 3
- Зарегистрирован: 2013-12-24 8:06:43
Непрочитанное сообщение
dr753 » 2014-05-05 11:44:49
Вроде бы пофиксил проблему. Причина один томов в одном из pool был переполнен ,в порол косяка при изначальной настройке так как пишется туда очень по малу а размер его 50 ГБ проблема вылезла только щас.
Код: Выделить всё
было
# File Pool definition
Pool {
Name = File
Pool Type = Backup
Recycle = yes # Bacula can automatically recycle Volumes
AutoPrune = yes # Prune expired volumes
Volume Retention = 365 days # one year
Maximum Volume Bytes = 50G # Limit Volume size to something #reasonable
Maximum Volumes = 10 # Limit number of Volumes in Pool
}
сделал
[code]
# File Pool definition
Pool {
Name = File
Pool Type = Backup
Recycle = yes # Bacula can #automatically recycle Volumes
AutoPrune = yes # Prune expired volumes
Volume Retention = 365 days # one year
Maximum Volume Bytes = 50G # Limit Volume size to #something reasonable
Maximum Volumes = 10 # Limit number of Volumes #in Pool
Label Format = "Sys-"
}
сам поол используется для
Код: Выделить всё
JobDefs {
Name = "DefaultJob"
Type = Backup
Level = Incremental
Client = backup-fd
FileSet = "Full Set"
Schedule = "WeeklyCycle"
Storage = File
Messages = Standard
Pool = File
Priority = 10
Write Bootstrap = "/var/lib/bacula/%c.bsr"
}
# 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/lib/bacula
File = /nonexistant/path/to/file/archive/dir
File = /proc
File = /tmp
File = /.journal
File = /.fsck
}
}
dr753