Fedrr
Junior Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору Всем доброго времени суток! Возникла проблема с запуском Director в bacula. ОС Centos 6 x64 Хотел бы уточнить, пароль, который мы меняем в bacula-dir.conf должен соответствовать root паролю или произвольный Предлагаю код стандартного конфига, менял тока пароль. Director { # define myself Name = bacula-dir DIRport = 9101 QueryFile = "/usr/libexec/bacula/query.sql" WorkingDirectory = /var/spool/bacula PidDirectory = "/var/run" Maximum Concurrent Jobs = 1 Password = "A1234567z" # Console password Messages = Daemon } JobDefs { Name = "DefaultJob" Type = Backup Level = Incremental Client = bacula-fd FileSet = "Full Set" Schedule = "WeeklyCycle" Storage = File Messages = Standard Pool = File Priority = 10 Write Bootstrap = "/var/spool/bacula/%c.bsr" } # # Define the main nightly save backup job # By default, this job will back up to disk in /tmp Job { Name = "BackupClient1" JobDefs = "DefaultJob" } #Job { # Name = "BackupClient2" # Client = bacula2-fd # JobDefs = "DefaultJob" #} # 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 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 = "WeeklyCycle" Run = Full 1st sun at 23:05 Run = Differential 2nd-5th sun at 23:05 Run = Incremental mon-sat at 23:05 } # This schedule does the catalog. It starts after the WeeklyCycle Schedule { Name = "WeeklyCycleAfterBackup" Run = Full sun-sat at 23: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 = localhost.localdomain FDPort = 9102 Catalog = MyCatalog Password = "A1234567z" # password for FileDaemon File Retention = 30 days # 30 days Job Retention = 6 months # six months AutoPrune = yes # Prune expired Jobs/Files } # # Second Client (File Services) to backup # You should change Name, Address, and Password before using # #Client { # Name = bacula2-fd # Address = client2.example.com # FDPort = 9102 # Catalog = MyCatalog # Password = "@@FD_PASSWORD@@2" # password for FileDaemon 2 # 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 # Do not use "localhost" here Address = localhost.localdomain # N.B. Use a fully qualified name here SDPort = 9103 Password = "A1234567z" Device = FileStorage Media Type = File } # Definition of DDS tape storage device #Storage { # Name = DDS-4 #Do not use "localhost" here #Address = 192.168.0.224 # N.B. Use a fully qualified name here #SDPort = 9103 #Password = "bacula" # password for Storage daemon #Device = DDS-4 # must be same as Device in Storage daemon #Media Type = DDS-4 # must be same as MediaType in Storage daemon #Autochanger = yes # enable for autochanger device #} # Definition of 8mm tape storage device #Storage { # Name = "8mmDrive" # Do not use "localhost" here # Address = storage.example.com # N.B. Use a fully qualified name here # SDPort = 9103 # Password = "@@SD_PASSWORD@@" # Device = "Exabyte 8mm" # MediaType = "8mm" #} В чем могут быть проблемы? |