100% found this document useful (1 vote)
304 views6 pages

Bacula Client Windows

The document provides instructions for configuring Bacula backup client on Windows. It describes downloading and installing the Bacula client, editing five configuration files on the Windows machine, and configuring the Bacula director on a Linux server to backup the Windows client. Key steps include editing the bacula-fd.conf file on Windows to configure the File Daemon, and adding the Windows client resource, fileset, and job to the dir-clients.conf, dir-filesets.conf, and dir-jobs.conf files on the Bacula director. The backup is then verified by checking the client status from the Bacula console.

Uploaded by

German Rodriguez
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
304 views6 pages

Bacula Client Windows

The document provides instructions for configuring Bacula backup client on Windows. It describes downloading and installing the Bacula client, editing five configuration files on the Windows machine, and configuring the Bacula director on a Linux server to backup the Windows client. Key steps include editing the bacula-fd.conf file on Windows to configure the File Daemon, and adding the Windows client resource, fileset, and job to the dir-clients.conf, dir-filesets.conf, and dir-jobs.conf files on the Bacula director. The backup is then verified by checking the client status from the Bacula console.

Uploaded by

German Rodriguez
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Bacula client windows (32 o 64 Bits) Descargar el bacula cliente desde: http://sourceforge.net/projects/bacula/files/Win32_64/5.2.10/ O desde el nocpop.

Finalizada la instalacin debemos editar 5 archivos de configuracin: C:\Program Files\Bacula\bacula-fd.conf # # Default Bacula File Daemon Configuration file # # For Bacula release 5.2.10 (06/28/12) -- Windows MinGW32 # # There is not much to change here except perhaps the # File daemon Name # # # "Global" File daemon configuration specifications # FileDaemon { # this is me Name = name-fd FDport = 9102 # where we listen for the director WorkingDirectory = "C:\\Program Files\\Bacula\\working" Pid Directory = "C:\\Program Files\\Bacula\\working" # Plugin Directory = "C:\\Program Files\\Bacula\\plugins" FDAddress = 10.24.11.25 # ip del propio equipo Maximum Concurrent Jobs = 20 } # # List Directors who are permitted to contact this File daemon # Director { Name = storage-dir Password = "xjqpse3Gcp65jk8fgLner_EKBEMlqnYeG" } # Restricted Director, used by tray-monitor to get the # status of the file daemon # Director { Name = name-mon Password = "9/lPiJ2lXEFRVZl0ij38x6U+k3Mm2ifs+XFkvvx/AITC" Monitor = yes } # Send all messages except skipped files back to Director Messages {

Name = Standard director = storage-dir = all, !skipped, !restored } C:\Program Files\Bacula\bat.conf # # Bacula Administration Tool (bat) Configuration File # Director { Name = storage-dir DIRport = 9101 address = 10.24.11.9 Password = ""xjqpse3Gcp65jk8fgLner_EKBEMlqnYeG"" } C:\Program Files\Bacula\bconsole.conf # # Bacula User Agent (or Console) Configuration File # Director { Name = storage-dir DIRport = 9101 address = 10.24.11.9 Password = ""xjqpse3Gcp65jk8fgLner_EKBEMlqnYeG"" } C:\Program Files\Bacula\tray-monitor.conf # Bacula Tray Monitor Configuration File # Monitor { Name = name-mon Password = "9/lPiJ2lXEFRVZl0ij38x6U+k3Mm2ifs+XFkvvx/AITC" RefreshInterval = 30 seconds } Client { Name = name-fd Address = localhost FDPort = 9102 Password = "9/lPiJ2lXEFRVZl0ij38x6U+k3Mm2ifs+XFkvvx/AITC" } #Storage { # Name = @basename@-sd # Address = @hostname@ # SDPort = @sd_port@ # Password = "@mon_sd_password@" #} # #Director { # Name = @basename@-dir # DIRport = @dir_port@ # address = @hostname@ #} #

# password for StorageDaemon

C:\name-fd # Client (File Services) to backup Client { Name = name-fd Address = 10.24.11.25 # ip del propio equipo FDPort = 9102 Catalog = MyCatalog Password = "EGk8TjHTka0Jz/2s39C6h6k4/wjogCz7EeqzmXJlF7RL" File Retention = 30 days # 30 days Job Retention = 6 months # six months AutoPrune = yes # Prune expired Jobs/Files }

# password for FileDaemon

Nota: si hay errores de ejecucin del programa Posiblemente tengan que crear la carpeta C:\ProgramData\bacula\ y copiar el bacula-fd.conf en el mismo.Tambin puede ser que lo tengan q iniciar con la opcin d 100 automaticamente para esto Primero hay que detener el servicios, inicio>> ejecutar >> services.msc

Despus abrimos el editor de registro y buscamos bacula-fd.exe , inicio>> ejecutar >>regedit

Agregamos -d 100

Iniciar el servicios, inicio>> ejecutar >> services.msc

Configuracin del cliente en el servidor en tres archivos (dir-clients.conf, dir-filesets.conf, dir-jobs.conf) : root# vi /etc/bacula/dir-clients.conf

dir-clients.conf: Client { Name = name-fd Address = 10.24.11.25 # ip del equipo a realizar el backup FDPort = 9102 Catalog = MyCatalog Password = "xjqpse3Gcp65jk8fgLner_EKBEMlqnYeG" File Retention = 30 days Job Retention = 6 months AutoPrune = yes Heartbeat Interval = 30 } root# vi /etc/bacula/dir-filesets.conf FileSet { Name = "name-fs" Include { File = "C:\\Program Files (x86)\\directorio" File = "C:\\ProgramData\\ directorio " Options { compression=GZIP; signature=MD5 } } } root# vi /etc/bacula/dir-jobs.conf Job { Name = "name-bkup" Client = name-fd FileSet = "name-fs" JobDefs = "Default_Appl" Maximum Concurrent Jobs = 6 } Reiniciar el servicio en el server: root# /etc/init.d/bacula-director restart Entrar en la consola de bacula: #bconsole Ver la conexin contra el cliente: *status client The defined Client resources are: 1: storage-fd 2: nocproject-fd 3: name-fd Select: 3 Ejecutar el backup: *run The defined Job resources are: 1: storage-fd 2: nocproject-fd 3: name-fd Select: 3 Ver nuevamente el estado: *status client The defined Client resources are:

1: storage-fd 2: nocproject-fd 3: name-fd Select: 3 Connecting to Client name-fd at 10.24.11.25:9102 name-sg1-fd Version: 5.0.1 (24 February 2010) VSS Linux Cross-compile Win32 Daemon started 28-Feb-14 11:42, 3 Jobs run since started. VSS enabled, Priv 0x206 APIs=OPT,ATP,LPV,CFA,CFW, WUL,WMKD,GFAA,GFAW,GFAEA,GFAEW,SFAA,SFAW,BR,BW,SPSP, WC2MB,MB2WC,FFFA,FFFW,FNFA,FNFW,SCDA,SCDW, GCDA,GCDW,GVPNW,GVNFVMPW Heap: heap=0 smbytes=84,999 max_bytes=170,422 bufs=72 max_bufs=117 Sizeof: boffset_t=8 size_t=4 debug=100 trace=1 Nota: la pass que hay que respectar es la "xjqpse3Gcp65jk8fgLner_EKBEMlqnYeG" la pass de mon es distinta a la del director.-

You might also like