My bacula stop't working

My Bacula work yesterday fine white the bconsole and all.  But suddenly today 
when i wanted to go in white   SUDO BCONSOLE  it just coming back in return

 Connecting to Director 10.5.0.36:9103
11-Nov 13:28 bconsole JobId 0: Fatal error: bsock.c:129 Unable 
to connect to Director daemon on 10.5.0.36:9103. ERR=Connection refused 

I have tried this few things

A.      Check’t that port and addresses are same in dir, fd, sd and bconsole.

B.      added this line in /etc/hosts  10.5.0.36 BACULA 

C.      Tried to ping my server white command

         telnet BACULA 9103  and white this ports to 9104 and 9105

        Only 9104 respond back “Trying 10.5.0.36.. Connect to Bacula. Escape 
character is ‘^]” 

         telnet 10.5.0.36 9103  and white ports 9104 and 9105

        Only respond back “Trying 10.5.0.36.. Connect to Bacula. Escape 
character is ‘^]” 

         telnet 127.0.0.1 9103  and white ports 9104 and 9105

        

Sow first I assumed that that Debian has a default firewall installed as Ubuntu 
has. That's why the connection is blocked to 9103 and 9105. Sow i made a lite 
research if debian has and it came up that no. Sow on the moment I am very 
confused what to try next. I add in here my directory, bconsole and hosts code 
if that has any help.


This is my Director.conf file
[B]#
# 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 2.4.4 (28 December 2008) -- debian 5.0
#
#  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 = debian-dir
  DIRport = 9103                # 
where we listen for UA connections
  QueryFile = "/etc/bacula/scripts/query.sql"
  WorkingDirectory = "/var/lib/bacula"
  PidDirectory = "/var/run/bacula"
  Maximum Concurrent Jobs = 1
  Password = "Password*"         # Console 
password
  Messages = Daemon
  DirAddress = 10.5.0.36
}

JobDefs {
  Name = "DefaultJob"
  Type = Backup
  Level = Incremental
  Client = FileDeamon
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = Storage
  Messages = Standard
  Pool = Default
  Priority = 10
}


#
# Define the main nightly save backup job
#   By default, this job will back up to disk in 
/nonexistant/path/to/file/archive/dir
Job {
  Name = "defaultjob"
  JobDefs = "DefaultJob"
  Write Bootstrap = "/var/lib/bacula/Client1.bsr"
}

#Job { 
#  Name = "Client2"
#  Client = debian2-fd
#  JobDefs = "DefaultJob"
#  Write Bootstrap = "/var/lib/bacula/Client2.bsr"
#}

# Backup the catalog database (after the nightly save)
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultJob"
  Level = Full
  FileSet= "Full Set"
  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  # WARNING!!! Passing the password via the command line is insecure.
  # see comments in make_catalog_backup for details.
  # Arguments to make_catalog_backup are:
&nbsp; #&nbsp; make_catalog_backup <database-name> <user-name> <password> <host>
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup bacula bacula"
&nbsp; # This deletes the copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup"
&nbsp; Write Bootstrap = "/var/lib/bacula/BackupCatalog.bsr"
&nbsp; Priority = 11&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp;# run after main backup
&#125;

#
# Standard Restore template, to be changed by Console program
#&nbsp; Only one such job is needed for all Jobs/Clients/Storage ...
#
Job &#123;
&nbsp; Name = "RestoreFiles"
&nbsp; Type = Restore
&nbsp; Client= FileDeamon&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp;
&nbsp; FileSet="Full Set"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; 
&nbsp; Storage = Storage&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; 
&nbsp; Pool = Default
&nbsp; Messages = Standard
&nbsp; Where = /etc/home/home/restore_files
&#125;


# List of files to be backed up
FileSet &#123;
&nbsp; Name = "Full Set"
&nbsp; Include &#123;
&nbsp; &nbsp; Options &#123;
&nbsp; &nbsp; &nbsp; signature = MD5
&nbsp; &nbsp; &#125;
#&nbsp; &nbsp; 
#&nbsp; Put your list of files here, preceded by 'File =', one per line
#&nbsp; &nbsp; or include an external list with&#58;
#
#&nbsp; &nbsp; File =/etc/apt/
#
#&nbsp; Note&#58; / backs up everything on the root partition.
#&nbsp; &nbsp; if you have other partitons such as /usr or /home
#&nbsp; &nbsp; you will probably want to add them too.
#
#&nbsp; By default this is defined to point to the Bacula build
#&nbsp; &nbsp; directory to give a reasonable FileSet to backup to
#&nbsp; &nbsp; disk storage during initial testing.
#
&nbsp; &nbsp; File = /nfs/nocrypt/jgoerzen/work/bacula/debian/tmp-build-sqlite
&nbsp; &#125;

#
# If you backup the root directory, the following two excluded
#&nbsp; &nbsp;files can be useful
#
&nbsp; Exclude &#123;
&nbsp; &nbsp; File = /proc
&nbsp; &nbsp; File = /tmp
&nbsp; &nbsp; File = /.journal
&nbsp; &nbsp; File = /.fsck
&nbsp; &#125;
&#125;

#
# When to do the backups, full backup on first sunday of the month,
#&nbsp; differential &#40;i.e. incremental since full&#41; every other sunday,
#&nbsp; and incremental backups other days
Schedule &#123;
&nbsp; Name = "WeeklyCycle"
&nbsp; Run = Full 1st sun at 23&#58;05
&nbsp; Run = Differential 2nd-5th sun at 23&#58;05
&nbsp; Run = Incremental mon-sat at 23&#58;05
&#125;

# This schedule does the catalog. It starts after the WeeklyCycle
Schedule &#123;
&nbsp; Name = "WeeklyCycleAfterBackup"
&nbsp; Run = Full sun-sat at 23&#58;10
&#125;

# This is the backup of the catalog
FileSet &#123;
&nbsp; Name = "bacula"
&nbsp; Include &#123;
&nbsp; &nbsp; Options &#123;
&nbsp; &nbsp; &nbsp; signature = MD5
&nbsp; &nbsp; &#125;
&nbsp; &nbsp; File = /var/lib/bacula/bacula.sql
&nbsp; &#125;
&#125;

# Client &#40;File Services&#41; to backup
Client &#123;
&nbsp; Name = FileDeamon
&nbsp; Address = 10.5.0.36
&nbsp; FDPort = 9104
&nbsp; Catalog = bacula
&nbsp; Password = "Password*"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # password for 
FileDaemon
&nbsp; File Retention = 30 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # 30 
days
&nbsp; Job Retention = 6 months&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # six 
months
&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired Jobs/Files
&#125;

#
# Second Client &#40;File Services&#41; to backup
#&nbsp; You should change Name, Address, and Password before using
#
#Client &#123;
#&nbsp; Name = debian2-fd&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; 
#&nbsp; Address = debian2
#&nbsp; FDPort = 9102
#&nbsp; Catalog = bacula
#&nbsp; Password = "ARm7qyF3lJSBKJ9NRICUj+Ry3PRJ3EZN92EnilHFVb8/2"&nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# password for FileDaemon 2
#&nbsp; File Retention = 30 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # 30 
days
#&nbsp; Job Retention = 6 months&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # six 
months
#&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired Jobs/Files
#&#125;


# Definition of file storage device
Storage &#123;
&nbsp; Name = Storage
# Do not use "localhost" here&nbsp; &nbsp; 
&nbsp; Address = 10.5.0.36&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # N.B. Use a fully qualified name here
&nbsp; SDPort = 9105
&nbsp; Password = "Password*"
&nbsp; Device = FileStorage
&nbsp; Media Type = File
&#125;



# Definition of DDS tape storage device
#Storage &#123;
#&nbsp; Name = DDS-4&nbsp; &nbsp; 
#&nbsp; Do not use "localhost" here
#&nbsp; Address = debian&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
# N.B. Use a fully qualified name here
#&nbsp; SDPort = 9105
#&nbsp; Password = "sL0Pjc3Nl1Je8zgVW3u8+0cI+vdIl5XdizCLU0v5dotr"&nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; # password for Storage daemon
#&nbsp; Device = DDS-4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; # must be same as Device in Storage daemon
#&nbsp; Media Type = DDS-4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; # must be same as MediaType in Storage daemon
#&nbsp; Autochanger = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# enable for autochanger device
#&#125;

# Definition of 8mm tape storage device
#Storage &#123;
#&nbsp; Name = "8mmDrive"
#&nbsp; Do not use "localhost" here
#&nbsp; Address = debian&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
# N.B. Use a fully qualified name here
#&nbsp; SDPort = 9105
#&nbsp; Password = "sL0Pjc3Nl1Je8zgVW3u8+0cI+vdIl5XdizCLU0v5dotr"
#&nbsp; Device = "Exabyte 8mm"
#&nbsp; MediaType = "8mm"
#&#125;

# Definition of DVD storage device
#Storage &#123;
#&nbsp; Name = "DVD"
#&nbsp; Do not use "localhost" here
#&nbsp; Address = debian&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
# N.B. Use a fully qualified name here
#&nbsp; SDPort = 9105
#&nbsp; Password = "sL0Pjc3Nl1Je8zgVW3u8+0cI+vdIl5XdizCLU0v5dotr"
#&nbsp; Device = "DVD Writer"
#&nbsp; MediaType = "DVD"
#&#125;


# Generic catalog service
Catalog &#123;
&nbsp; Name = bacula
&nbsp; dbname = "bacula"; dbuser = "bacula"; dbpassword = "secretPassword"
&#125;

# Reasonable message delivery -- send most everything to email address
#&nbsp; and to the console
Messages &#123;
&nbsp; Name = Standard
#
# NOTE! If you send to two email or more email addresses, you will need
#&nbsp; to replace the %r in the from field &#40;-f part&#41; with a single 
valid
#&nbsp; email address in both the mailcommand and the operatorcommand.
#&nbsp; What this does is, it sets the email address that emails would display
#&nbsp; in the FROM field, which is by default the same email as they're being
#&nbsp; sent to.&nbsp; However, if you send email to more than one address, then
#&nbsp; you'll have to set the FROM address manually, to a single address. 
#&nbsp; for example, a 'no-re...@mydomain.com', is better since that tends to
#&nbsp; tell &#40;most&#41; people that its coming from an automated source.

#
&nbsp; mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula&#58; %t %e of %c %l\" %r"
&nbsp; operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula&#58; Intervention needed for %j\" %r"
&nbsp; mail = myem...@dot.com = all, skipped&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; 
&nbsp; operator = r...@localhost = mount
&nbsp; console = all, !skipped, !saved
#
# WARNING! the following will create a file that you must cycle from
#&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time to time as it will grow indefinitely. 
However, it will
#&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; also keep all your messages if they scroll 
off the console.
#
&nbsp; append = "/var/lib/bacula/log" = all, !skipped
&#125;


#
# Message delivery for daemon messages &#40;no job&#41;.
Messages &#123;
&nbsp; Name = Daemon
&nbsp; mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula daemon message\" %r"
&nbsp; mail = myem...@dot.com = all, skipped&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; 
&nbsp; console = all, skipped, !saved
&nbsp; append = "/var/lib/bacula/log" = all, !skipped
&#125;



&nbsp; &nbsp; 
# Default pool definition
Pool &#123;
&nbsp; Name = Default
&nbsp; Pool Type = Backup
&nbsp; Recycle = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp;# Bacula can automatically recycle Volumes
&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired volumes
&nbsp; Volume Retention = 365 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# one year
&#125;

# Scratch pool definition
Pool &#123;
&nbsp; Name = Scratch
&nbsp; Pool Type = Backup
&#125;

#
# Restricted console used by tray-monitor to get the status of the director
#
Console &#123;
&nbsp; Name = testimaa
&nbsp; Password = "testimaa"
&nbsp; CommandACL = status, .status
&#125;
&#91;/B&#93;

and this is my bconsole file

&#91;B&#93;#
# Bacula User Agent &#40;or Console&#41; Configuration File
#

Director &#123;
&nbsp; Name = debian-dir
&nbsp; DIRport = 9103
&nbsp; address = 10.5.0.36
&nbsp; Password = "Password*"
&#125;
&nbsp;&#91;/B&#93; 

and my hosts file

&nbsp;127.0.0.1&nbsp; &nbsp;localhost
127.0.1.1&nbsp; &nbsp;debian.debian.com&nbsp; &nbsp;debian
10.5.0.36&nbsp; &nbsp;Bacula

# The following lines are desirable for IPv6 capable hosts
&#58;&#58;1&nbsp; &nbsp; &nbsp;localhost ip6-localhost ip6-loopback
fe00&#58;&#58;0 ip6-localnet
ff00&#58;&#58;0 ip6-mcastprefix
ff02&#58;&#58;1 ip6-allnodes
ff02&#58;&#58;2 ip6-allrouters
ff02&#58;&#58;3 ip6-allhosts


I think

+----------------------------------------------------------------------
|This was sent by embraer1...@hotmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+----------------------------------------------------------------------



------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to