Hello,

I installed a central bareos server (19.2.7-2, incl. dir, sd) on Ubuntu 
18.04.5. The backup clients are Ubuntu and CentOS.

I configured a "Nightly" scheduler, the clients are connected (and I can 
run commands via bconsole), the filesets are correct, I created one jobdef:

JobDefs {
  # name (required)
  Name = "BackupLinuxConfig"
  
  # type can be backup/restore/verify
  Type = Backup
  
  # the default level bareos will try
  # can also be Full/Differential(since last full)/Incremental(since last 
incremental)
  Level = Incremental
  
  # the default client, to be overwritten by the job.conf
  Client = bareos-fd
  
  # what files to include/exclude
  FileSet = "LinuxConfig"
  
  # the schedule we just created
  Schedule = "Nightly"
  
  # where to store it
  Storage = File
  
  # the message reporting
  Messages = Standard
  
  # the pool where to store it
  Pool = Incremental
  
  # the higher the value priority the lower it will be dropped in the queue
  # so for important jobs priority=1 will run first
  Priority = 10
  
  # the bootstrap file keeps a "log" of all the backups, and gets rewritten 
every time a 
  # full backup is made, it can be used during recovery
  Write Bootstrap = "/var/lib/bareos/%c.bsr"
  
  # in case these value's get overwritten
  # define where would be a good pool to write 
  # note that full backup will be used atleast once because no full
  # backup will exist
  Full Backup Pool = Full
  Differential Backup Pool = Differential
  Incremental Backup Pool = Incremental
}

The actual jobs look like this:

Job {
  # required
  Name = "web01-MariaDB"
  
  # the default settings
  JobDefs = "BackupLinuxConfig"
  
  # overwrite the client here
  Client = "web01"

  FileSet = "LinuxMariaDB"
}

However, the jobs do not start. One example message is:
31-Dez 00:10 bareos-dir JobId 548: No prior Full backup Job record found.
31-Dez 00:10 bareos-dir JobId 548: No prior or suitable Full backup found 
in catalog. Doing FULL backup.

But, nothing happens:

*list jobs
Automatically selected Catalog: MyCatalog
Using Catalog "MyCatalog"
+-------+-----------------------------+------------+---------------------+------+-------+----------+------------+-----------+
| JobId | Name                        | Client     | StartTime           | 
Type | Level | JobFiles | JobBytes   | JobStatus |
+-------+-----------------------------+------------+---------------------+------+-------+----------+------------+-----------+
|   520 | cloud01-MariaDB             | cloud01    | NULL                | 
B    | I     |        0 |          0 | C         |
|   521 | ox01-Dovecot                | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   522 | project01-MariaDB           | project01  | NULL                | 
B    | I     |        0 |          0 | C         |
|   523 | comm01-LinuxJitsi           | comm01     | NULL                | 
B    | I     |        0 |          0 | C         |
|   524 | pbx01-AstBackup             | pbx01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   525 | ox01-MariaDB                | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   526 | ucs01-scan                  | ucs01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   527 | erp91-Dolibarr              | erp91      | NULL                | 
B    | I     |        0 |          0 | C         |
|   528 | ox01-Postfix                | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   529 | ox01-OXFilestore            | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   530 | splunk01-Splunk             | splunk01   | NULL                | 
B    | I     |        0 |          0 | C         |
|   531 | mailsync01-MBSync           | mailsync01 | NULL                | 
B    | I     |        0 |          0 | C         |
|   532 | project01-OpenprojectConfig | project01  | NULL                | 
B    | I     |        0 |          0 | C         |
|   533 | ox01-VMail                  | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   534 | web01-MariaDB               | web01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   535 | ox01-LDAP                   | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   536 | cloud02-MariaDB             | cloud02    | NULL                | 
B    | I     |        0 |          0 | C         |
|   537 | cloud02-LinuxNCData         | cloud02    | NULL                | 
B    | I     |        0 |          0 | C         |
|   538 | netmon01-OMDBackup          | netmon01   | NULL                | 
B    | I     |        0 |          0 | C         |
|   539 | erp01-MariaDB               | erp01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   540 | erp91-MariaDB               | erp91      | NULL                | 
B    | I     |        0 |          0 | C         |
|   541 | Linux-Webserver-Backup      | web01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   542 | ox01-OXConfig               | ox01       | NULL                | 
B    | I     |        0 |          0 | C         |
|   543 | cloud01-LinuxOCData         | cloud01    | NULL                | 
B    | I     |        0 |          0 | C         |
|   544 | cloud02-LinuxNCConfig       | cloud02    | NULL                | 
B    | I     |        0 |          0 | C         |
|   545 | erp01-Dolibarr              | erp01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   546 | Linux-Config-Backup         | web01      | NULL                | 
B    | I     |        0 |          0 | C         |
|   547 | cloud01-LinuxOCConfig       | cloud01    | NULL                | 
B    | I     |        0 |          0 | C         |
|   548 | comm01-LinuxNginxSites      | comm01     | NULL                | 
B    | I     |        0 |          0 | C         |
|   549 | comm01-LinuxNginxSites      | comm01     | NULL                | 
B    | I     |        0 |          0 | C         |

The initial runs of the jobs were all fine, there should be no 
communication issue. What am I missing?

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/b105db48-e7fb-41b2-9173-85b54e1e34c2n%40googlegroups.com.

Reply via email to