Hello Everyone, I have two Installs of FreeBSD, the first one is a server and the other one is a client. When I use the server to backup itself it works fine. But when I want to backup the client to the server, the job status is just stuck at R (Running [I checked this using
I added two more files and it showed
So it can see the files but not back them up.
Any ideas on what is the problem?
This is my bacula-fd.conf FreeBSD Client (the one I want to backup)
And my bacula-dir.conf FreeBSD Server (the one I want to backup to)
Even after 20 minutes have passed the job status is still stuck at R.
I searched for guides on the internet about bacula remote backups but it still didn't work.
Can someone shed some light in this?
*list jobs
]). I thought that maybe the server and the client couldn't communicate properly so I ran *estimate
just to check, and it returned
Code:
Connecting to Client MyBaculaRemote at 192.168.1.144:9102
2000 OK estimate files=9 bytes=12,156,246
Code:
Connecting to Client MyBaculaRemote at 192.168.1.144:9102
2000 OK estimate files=11 bytes=12,281,611
Any ideas on what is the problem?
This is my bacula-fd.conf FreeBSD Client (the one I want to backup)
Code:
#
# Default Bacula File Daemon Configuration file
#
# For Bacula release 7.4.2 (06 June 2016) -- freebsd 11.0-RC2
#
# There is not much to change here except perhaps the
# File daemon Name to
#
#
# Copyright (C) 2000-2015 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
#
# List Directors who are permitted to contact this File daemon
#
Director {
Name = MyBaculaDirector
Password = "the bacula-fd password"
}
#
# Restricted Director, used by tray-monitor to get the
# status of the file daemon
#
#Director {
# Name = 110amd64-default-job-13-mon
# Password = "G7SRq2vB8Qo8A4tT9zWUv/5ulg+AqbJywap8SwPiZzZD"
# Monitor = yes
#}
#
# "Global" File daemon configuration specifications
#
FileDaemon { # this is me
Name = MyBaculaRemote
FDport = 9102 # where we listen for the director
WorkingDirectory = /var/db/bacula
Pid Directory = /var/run
Maximum Concurrent Jobs = 100
# Plugin Directory = /usr/local/lib
}
# Send all messages except skipped files back to Director
Messages {
Name = Standard
director = MyBaculaDirector = all, !skipped, !restored
}
And my bacula-dir.conf FreeBSD Server (the one I want to backup to)
Code:
Client {
Name = MyBaculaRemote
Address = 192.168.1.144
FDPort = 9102
Catalog = MyCatalog
Password = "the bacula-fd password"
}
Job {
Name = "BACKUPRemoteInc"
Client = MyBaculaRemote
Type = "Backup"
FileSet = "BACKUPRemoteIncFS"
Storage = MyFirstStorage
Messages = MyMessages
Pool = IncrFile # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = FullFile
Differential Backup Pool = DiffFile
Incremental Backup Pool = IncrFile
}
FileSet {
Name = "BACKUPRemoteIncFS"
Include {
Options {
signature=MD5
}
File = /root/vincentseefiles/garda
}
Exclude {
File = *~
}
}
Even after 20 minutes have passed the job status is still stuck at R.
I searched for guides on the internet about bacula remote backups but it still didn't work.
Can someone shed some light in this?