Re: [Bacula-users] moving from mysql (mariadb) to postgresql

2024-04-05 Thread Wanderlei Huttel
Hello Take a look in this link https://github.com/wanderleihuttel/bacula-utils/tree/master/convert_mysql_to_postgresql Em qui., 4 de abr. de 2024 21:40, Gary R. Schmidt escreveu: > On 05/04/2024 07:32, Alan Polinsky wrote: > > I am a retired programmer, with a small Lan at home; two Nas's,

Re: [Bacula-users] Migrating from mariadb to postgresql

2022-09-05 Thread Wanderlei Huttel
ame, 'hex') from media; >encode > -------- > 7a69662d66756c6c2d30303031 > 7a69662d696e63722d30303032 > 7a69662d696e63722d30303033 > ... > > > All the best, Uwe > > > > > On Tue, Aug 30, 2022 at 08:12:53PM -0300, Wand

Re: [Bacula-users] Migrating from mariadb to postgresql

2022-09-02 Thread Wanderlei Huttel
Thanks Radosław! Best regards *Wanderlei Hüttel* Em sex., 2 de set. de 2022 às 06:40, Radosław Korzeniewski < rados...@korzeniewski.net> escreveu: > Hi, > > śr., 31 sie 2022 o 01:14 Wanderlei Huttel > napisał(a): > >> Hello Uwe >> >> I've made a script

Re: [Bacula-users] Migrating from mariadb to postgresql

2022-09-01 Thread Wanderlei Huttel
Hello Uwe I found a document on the internet about pgloader. Maybe it would be necessary to make a cast of the fields. https://pgloader.readthedocs.io/en/latest/ref/mysql.html#mysql-database-casting-rules Best regards *Wanderlei Hüttel* Em qui., 1 de set. de 2022 às 10:00, Uwe Schuerkamp <

Re: [Bacula-users] Migrating from mariadb to postgresql

2022-08-30 Thread Wanderlei Huttel
Hello Uwe I've made a script to migrate MySQL/MariaDB to PostgreSQL https://github.com/wanderleihuttel/bacula-utils/tree/master/convert_mysql_to_postgresql I've found errors only in the Log table. I've looked for chars with wrong encoding and make an update in MySQL, did a dump and import again

Re: [Bacula-users] Bacula Error Compiling S3 Libs in Ubuntu 22.0.4

2022-07-05 Thread Wanderlei Huttel
Thanks Eric! Best regards *Wanderlei Hüttel* Em ter., 5 de jul. de 2022 às 07:08, Eric Bollengier via Bacula-users < bacula-users@lists.sourceforge.net> escreveu: > Hello Wanderlei, > > On 7/5/22 11:54, Wanderlei Huttel wrote: > > Hello > > > > I'm trying to

[Bacula-users] Bacula Error Compiling S3 Libs in Ubuntu 22.0.4

2022-07-05 Thread Wanderlei Huttel
Hello I'm trying to compile Bacula S3 libs in Ubuntu 22.0.4 and I'm getting the error below: I removed the "-Werror" flag and it apparently compiles without errors only warnings. Is it ok?

Re: [Bacula-users] Community binary registration leads to 404 page

2022-06-08 Thread Wanderlei Huttel
Hello Sebastian The bacula.org website is under maintence. Em qua., 8 de jun. de 2022 06:32, Sebastian Elisa Pfeifer < sebastian.pfei...@unicorncloud.org> escreveu: > Dear all, > > I have a problem similar to the one Dirk had some days ago. > > If I register at the deb and rpm download page >

Re: [Bacula-users] Bacula Community packages repo, wiki and cdash are offline

2022-06-06 Thread Wanderlei Huttel
Hello Eric Have you ever think about create a git repository in https://github.com? Best regards *Wanderlei Hüttel* Em seg., 6 de jun. de 2022 às 13:02, Eric Bollengier via Bacula-users < bacula-users@lists.sourceforge.net> escreveu: > > The git service is available on

Re: [Bacula-users] HELP: Installation BACULA 11 on debian 10

2022-06-03 Thread Wanderlei Huttel
Hello Gina The bacula.org web site is under maintence! Em sex., 3 de jun. de 2022 10:50, gina.co...@uc.pt escreveu: > Hi, > I had installed a bacula server 11.0.5 in Debian 10. The installation > procedure that I followed works fine until 3 weeks ago. > I try today to test the installation

[Bacula-users] Bacula Debian systemd services problem

2022-05-03 Thread Wanderlei Huttel
Hello guys I would like to know why when I compile Bacula source code, it doesn't install Debian systemd services? I always use the commands make -j 8 make install make install-autostart I know there is a directory in source code "src/platforms/systemd", that has the systemd services, but when

Re: [Bacula-users] Error when compiling Bacula 11.3

2022-04-21 Thread Wanderlei Huttel
creveu: > Hello Wanderlei, > > I have just pushed a fix for this compilation issue, > > can you update and retry? > > Thanks, > > Best Regards, > > Eric > > On 21.04.22 01:47, Wanderlei Huttel wrote: > > Hello > > I'm trying to compile Bacula

[Bacula-users] Error when compiling Bacula 11.3

2022-04-20 Thread Wanderlei Huttel
Hello I'm trying to compile Bacula as I always do, now in Debian GNU/Linux 11 (bullseye), and I'm getting an error. config.out == Configuration on Wed Apr 20 20:33:26 -03 2022: Host: x86_64-pc-linux-gnu -- debian 11.3 Bacula version:

[Bacula-users] Bacula Client Behind NAT

2021-12-02 Thread Wanderlei Huttel
I'm trying to configure the new feature in in Bacula, but manual is not clear about it. https://www.bacula.org/11.0.x-manuals/en/main/New_Features_in_11_0_0.html#SECTION00230 In the company have some employees that sometimes are working at home with their laptops and the most of

Re: [Bacula-users] Exclude Day from Schedule

2021-08-27 Thread Wanderlei Huttel
Change to the first friday, is easier to change: Schedule { Name = "E1N-WeeklyCycle" Run = Level=Full first fri at 17:00 Run = Level=Incremental mon-thu at 17:00 Run = Level=Differential 2nd-5th fri at 17:00 } Best regards *Wanderlei Hüttel* Em sex., 27 de ago. de 2021 às 08:45,

Re: [Bacula-users] Deadweight volumes, how to discard?

2021-08-05 Thread Wanderlei Huttel
Hello Robert You can create a file with list of volumes that you want to delete and use some script something like this below: Example of file /tmp/volumes.txt volume01 volume02 volume03 #!/bin/bash bconsole=$(which bconsole) for volname in $(cat /tmp/volumes.txt); do echo $volname;

Re: [Bacula-users] How to configure Bacula with S3

2021-06-17 Thread Wanderlei Huttel
021-06-16 16:44:34 Wanderlei Huttel wrote: > > Hello Erick > > > > I guess I've discovered the problem. > > I had to remove the libs cache "rm /etc/ld.so.cache" and just > > run "ldconfig" to create a new cache and then running command "s3&quo

Re: [Bacula-users] How to configure Bacula with S3

2021-06-16 Thread Wanderlei Huttel
new > systems are not very fan of having things in /usr/local. > > Best Regards, > > Eric > > On 16.06.21 14:01, Wanderlei Huttel wrote: > > Hello > > > > Finally I'm trying to run Bacula with S3 Cloud (Wasabi), but I'm not > getting > > to configure. &g

[Bacula-users] How to configure Bacula with S3

2021-06-16 Thread Wanderlei Huttel
Hello Finally I'm trying to run Bacula with S3 Cloud (Wasabi), but I'm not getting to configure. In the Whitepaper and Manual is not so clear (would be interesting have more information and examples about it). What I'm doing wrong? I followed this bacula video:

Re: [Bacula-users] Bacula 11 - where's my Filename table? :-)

2021-06-15 Thread Wanderlei Huttel
Hello Uwe I've made a patch to fix queries in "bacula/examples/sample-query.sql" Basically is necessary to remove the table Filename and replace "Filename.Name" by "File.FileName" Best regards *Wanderlei Hüttel* Em ter., 15 de jun. de 2021 às 04:54, Uwe Schuerkamp <

Re: [Bacula-users] [Bacula-devel] Release 11.0.5

2021-06-03 Thread Wanderlei Huttel
Hello Eric Is the code updated in the bacula git? There's no tag 11.0.5. Best regards *Wanderlei Hüttel* Em qui., 3 de jun. de 2021 às 15:05, Eric Bollengier via Bacula-devel < bacula-de...@lists.sourceforge.net> escreveu: > Hello, > > We are pleased to announce the release of Bacula

[Bacula-users] Bacula make Full backup when windows client is updated even than level would be incremental

2021-03-19 Thread Wanderlei Huttel
Hello I've noticed this problem every time I need to update the Windows Clients I'm using accurate mode "accurate = pinsM" ++--+-+--+---+--++---+ | jobid | name | starttime | type |

Re: [Bacula-users] Error to compile bacula 9.6.5 in CentOS 7.8

2020-09-08 Thread Wanderlei Huttel
rds *Wanderlei Hüttel* Em seg., 7 de set. de 2020 às 03:37, Radosław Korzeniewski < rados...@korzeniewski.net> escreveu: > Hello, > > czw., 3 wrz 2020 o 16:52 Wanderlei Huttel > napisał(a): > >> I'm trying to compile bacula in CentOS 7.8 and I'm getting amd error!

[Bacula-users] Error to compile bacula 9.6.5 in CentOS 7.8

2020-09-03 Thread Wanderlei Huttel
I'm trying to compile bacula in CentOS 7.8 and I'm getting amd error! It looks the error is in the dird and is a c++ bug. How to avoid this error? My command for compiling == #!/bin/bash ./configure \ --enable-smartalloc \ --with-postgresql \

Re: [Bacula-users] Retention Period

2020-06-23 Thread Wanderlei Huttel
Hello Ken You must change the "Volume Retention" in the Pool Resource. And after that is necessary to run the command "update" in the bconsole to apply the changes vor volumes previously written. *update 1: Volume parameters 14: All Volumes from all Pools Best regards *Wanderlei Hüttel* Em

Re: [Bacula-users] Bacula RPM 9.6.5

2020-06-19 Thread Wanderlei Huttel
Hello Luca Yes, you need to chenge the repo version. But the version 9.6.5 is not available yet. Best regards *Wanderlei Hüttel* Em sex., 19 de jun. de 2020 às 03:45, Luca De Rugeriis < luca.deruger...@gmail.com> escreveu: > Hi all, > for those using the repository at bacula.org, do we need

[Bacula-users] Bacula packages problem in repositor Debian Buster 9.6.3

2020-05-19 Thread Wanderlei Huttel
Hello We have a script to automate Bacula community Installation using packages, but I guess there are some problem in the repository debian 9.6.3 https://github.com/wanderleihuttel/bacula-utils/blob/master/conf/scripts/_bacula_community_package.sh Error during install:

Re: [Bacula-users] Vchanger 1.0.3 Released

2020-05-13 Thread Wanderlei Huttel
Hello Josh A long time ago I've sent you a patch to modify vchanger to create more standards labels https://github.com/wanderleihuttel/vchanger/commit/256bb9bda3632265b803df3e6e19edc159c741e1 Did you committed the code? Best regards *Wanderlei Hüttel* Em ter., 12 de mai. de 2020 às 18:12,

Re: [Bacula-users] bconsole history

2020-05-13 Thread Wanderlei Huttel
Hello Did you compile with libreadline? Sent from Xiaomi Redmi Note 7 Wanderlei Hüttel Em qua, 13 de mai de 2020 04:27, *Sachin* H escreveu: > Hello Experts, > Hello, > > I used to use Bacula where in bconsole one can go back to the previous > commands using up arrow key. And also the

Re: [Bacula-users] Query regarding Verify Backup

2020-05-12 Thread Wanderlei Huttel
Hello You can use Verify Jobs. Take a look in the manual: https://www.bacula.org/9.6.x-manuals/en/main/Configuring_Director.html#SECTION00213 You Just need to create a VerifyJob: Job{ Name = "Verify_Data" Type = Verify Level = Data JobDefs = "DefaultJob" Enabled = no

Re: [Bacula-users] backup problem to new storage server

2020-04-17 Thread Wanderlei Huttel
Hello The bacula-dir and bacula-sd daemons ALWAYS MUST BE in the same version and only bacula-fd can be in the same version of DIR/SD or in prior versions. Best regards *Wanderlei Hüttel* Em sex., 17 de abr. de 2020 às 03:28, Thing escreveu: > After rebooting my systems I see, > > " Last

Re: [Bacula-users] Execute command on client

2020-04-01 Thread Wanderlei Huttel
Hello Pierre Yes, it possible. For run scripts in bacula there are basically 5 options: RunBeforeJob - Run In server before backup (single line config) RunAfterJob - Run In server after backup (single line config) ClientRunBeforeJob - Run In client before backup (single line config)

Re: [Bacula-users] [Bacula-devel] Estimate listing error (ERROR in smartall.c:114 Failed ASSERT: nbytes > 0)

2020-03-12 Thread Wanderlei Huttel
Hello Martin I've applied your patch to a Linux client and it looks OK now. Is this patch also fix Windows clients? Best regards *Wanderlei Hüttel* Em qui., 12 de mar. de 2020 às 14:50, Martin Simmons escreveu: > >>>>> On Wed, 11 Mar 2020 17:10:39 -0300, Wan

[Bacula-users] Estimate listing error (ERROR in smartall.c:114 Failed ASSERT: nbytes > 0)

2020-03-11 Thread Wanderlei Huttel
Hello I was trying to run a command estimate listing, and when I use the option "accurate=yes" is killing the client One log is below and all of rest in the ( https://pastebin.com/hW8nL3Hp ) because the limitation o 40Kb of sourceforge.net

[Bacula-users] Doubt about Bacula Storage/Autochanger

2020-03-06 Thread Wanderlei Huttel
Hello In the newer Bacula versions, in the bacula-dir.conf, was replaced "Storage" resources for "Autochanger" resources. I was using "Storage" resources instead "Autochanger" resource since the beginning of my touch with Bacula. Today I've tried to modify and change Storage for Autochanger and

[Bacula-users] Bacula Windows Client Problem

2020-02-27 Thread Wanderlei Huttel
Hello I don't know if more people have the same error, but I noticed that when I try to update the Windows clients, I always receive this error message about no access for the plugin alldrives-fd.dll. I'm running Windows 10 (updated) and I'm a local administrator of machine and I'm trying to

Re: [Bacula-users] Baculum installation issue.

2020-02-26 Thread Wanderlei Huttel
Hello Erick If you want I have a script to install from sources. https://github.com/wanderleihuttel/bacula-utils/blob/master/tutorial/_baculum_install_centos7.sh Just modify as you need. Best regards *Wanderlei Hüttel* Em qua., 26 de fev. de 2020 às 09:40, Erik P. Olsen escreveu: > Yes,

[Bacula-users] Failed to compile Bacula 9.6.0 and problem with documentation encoding

2020-02-24 Thread Wanderlei Huttel
Hello I saw today, that Bacula 9.6.0 was released! I've tried to to compile, bu I've receiving an error message in console.c. = Compiling console.c /usr/src/bacula/bacula/libtool --silent --tag=CXX --mode=link /usr/bin/g++ -L/usr/include/readline

Re: [Bacula-users] /usr/libexec/bacula/update_mysql_tables

2020-01-10 Thread Wanderlei Huttel
Hello Erwan First of all, MariaDB is not very recommended for using with Bacula, but you can use for you own risk. This error is it looks is caused by SQL_MODE, that I guess is very similar of MySQL errors. Take a look in the link below:

Re: [Bacula-users] lstat / MySQL

2019-12-03 Thread Wanderlei Huttel
Hello Helmut Yes, it's possible! Take a look in the function "base64_decode_lstat" in my github: You need to use this way: SELECT base64_decode_lstat(8,LStat) FROM File WHERE JobId=XXX; https://github.com/wanderleihuttel/webacula/blob/master/install/MySql/update_tables_7.5.2_to_7.5.3.sh

Re: [Bacula-users] File daemom on Windows 10.

2019-11-26 Thread Wanderlei Huttel
Hello Cristian Yes, Bacula Windows fd is supported in Windows 10. You can get from the link below: https://www.bacula.org/binary-download-center/ Best Regards *Wanderlei Hüttel* Em ter., 26 de nov. de 2019 às 10:08, Cristian Zoicas < zoi...@medialab.sissa.it> escreveu: > Hello all. > > I

Re: [Bacula-users] Bacula-FD - RedHat

2019-08-16 Thread Wanderlei Huttel
Hello Maurizio You can compile from source: https://sourceforge.net/projects/bacula/files/bacula/ Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em sex, 16 de ago de 2019 às 13:41, Maurizio Caloro escreveu: > Hello Together > > > > Please i have here meny differnt older linux

[Bacula-users] Bacula Binary Packages Register Problem

2019-07-12 Thread Wanderlei Huttel
Hello Kern Many people in Brazil are complaining that the email with the key does not arrive in the email box, not even in SPAM. https://www.bacula.org/bacula-binary-package-download/ Please, try to confirm if everything is OK. Best Regards *Wanderlei Hüttel* http://www.bacula.com.br

[Bacula-users] Baculum error config MaximumBandwidth

2019-06-19 Thread Wanderlei Huttel
Hello Marcin Is this a bug? (About MaximumBandwidth) Error 94: Config validation error.Array( [output] => JSON tool returned wrong exitcode. Output:bacula-dir: ERROR TERMINATION at parse_conf.c:805 Config error: expected a speed, got: 1000 : line 77, col 31 of file /etc/bacula/config_AWih9F

Re: [Bacula-users] How to upgrade Bacula 5.2.13 to 7.2

2019-05-30 Thread Wanderlei Huttel
Hello Preash Have you install Bacula compiling source code or using packages? I have some tips to upgrade bacula by compilation of source code. It works to install using packages also. You need to do in mind that the basically, Bacula have conf files and a catalog (database), and volumes. If you

Re: [Bacula-users] Debugging a backup job

2019-05-29 Thread Wanderlei Huttel
Hello Include heartbeat interval in the configs: https://github.com/wanderleihuttel/bacula-utils/blob/master/dicas/heartbeat_interval.md Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qua, 29 de mai de 2019 às 13:18, David Brodbeck escreveu: > Since you're backing up *some*

Re: [Bacula-users] Bacula Community Binaries 9.4.3 ??

2019-05-27 Thread Wanderlei Huttel
Hello Davide Why the paths for the packages are so strange? This is the path address for see the Debian packages: https://www.bacula.org/packages/X/debs/9.4.3/stretch/amd64/dists/stretch/main/binary-amd64/ I guess this part of path is in "duplicity" "dists/stretch/main/binary-amd64/"

Re: [Bacula-users] Verify job succeeds, but restore fails with checksum error?

2019-05-08 Thread Wanderlei Huttel
Hello Mike Try to upgrade your very old bacula client to a new one (at least as the same version of bacula-dir) Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qua, 8 de mai de 2019 às 13:31, Mike Benoit escreveu: > We have some jobs that backup SQL databases, so immediately

Re: [Bacula-users] Bacula questions

2019-05-03 Thread Wanderlei Huttel
Hello Marcin About file relocation Do you know how bacula works with Windows clients? I know if I restore in Windows clients, the the drive "C:\somefolder\someanotherfolder" become "c/somefolder/someanotherfolder". Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em sex, 3 de mai de

Re: [Bacula-users] [Bacula-devel] Bacula Community Release 9.4.3

2019-05-03 Thread Wanderlei Huttel
configure hosts page > - baculum: Fix showing messages resource configuration > - baculum: Add parent node property to directive list types > - baculum: Add capability to define multiple drivetype and fstype > directives in >fileset resource > - baculum: Fix showing runscript subresour

Re: [Bacula-users] Query for "most recent copies of a file"

2019-04-12 Thread Wanderlei Huttel
Hello Christoph Or maybe your File Retention is to small and Bacula are deleting from catalog. Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em sex, 12 de abr de 2019 às 11:27, Martin Simmons escreveu: > Thq query output looks suspicious to me -- do you expect the file to be >

Re: [Bacula-users] rclone / Autochanger / BackBlaze

2019-04-12 Thread Wanderlei Huttel
Hello Sruckh Try to use the rclone from this repository https://github.com/wanderleihuttel/rclone-changer Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em sex, 12 de abr de 2019 às 16:01, Heitor Faria escreveu: > Hello, > > Thanks for the feedback. > I will warn the

Re: [Bacula-users] Label Command Error

2019-03-14 Thread Wanderlei Huttel
Hello Ken Take a look https://github.com/wanderleihuttel/bacula-utils/blob/master/dicas/mysql_sql-mode.md Enviado de Motorola Moto Z2 Play Wanderlei Hüttel Em qui, 14 de mar de 2019 18:02, Ken Mandelberg escreveu: > My problem with the label command comes down do this, the INSERT into > the

Re: [Bacula-users] Windows backup much slower than Linux backup

2019-03-01 Thread Wanderlei Huttel
ller.There is nothing second rate about the > current community Windows binaries, and they will be even better in the > next few months. > > Best regards, > Kern > > On 3/1/19 3:26 PM, Wanderlei Huttel wrote: > > Hello Kern > > I know that this issue could have a lot

Re: [Bacula-users] Is it possible to tell bacula to not run a job for the next week?

2019-03-01 Thread Wanderlei Huttel
Hello Byron. You can use the command disable job=job-name Enviado de Motorola Moto Z2 Play Wanderlei Hüttel Em sex, 1 de mar de 2019 12:05, byron escreveu: > I have 10 jobs that run every night and write to the same pool of tapes. > > Tonight is the night they run their monthly full backups

Re: [Bacula-users] Windows backup much slower than Linux backup

2019-03-01 Thread Wanderlei Huttel
Hello Kern I know that this issue could have a lot of possibilities, but it's known that the community Windows client is not working fine as Enterprise version 7.4.4 that was released to the personal used in the past time. The installation generate some trash files, the bacula-fd.conf is not

Re: [Bacula-users] Bacula9.4.1 rpm Binaries package

2019-02-25 Thread Wanderlei Huttel
Hello Petar The Debian binaries is already released (9.4.2) since February 11th. Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em seg, 25 de fev de 2019 às 07:54, Petar Kozic escreveu: > Hi Folks, > > can we expect binary for Debian like OS ? > > > On February 14, 2019 at

Re: [Bacula-users] Long pause with no logging or any activity at all

2019-02-20 Thread Wanderlei Huttel
About this issue! I've had this behaviour sometimes in a Verify Job Level Data. Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qua, 20 de fev de 2019 às 10:06, William Muriithi escreveu: > Hello Simmons, > > > > Unless something like Samba is converting the symlink to a

Re: [Bacula-users] [Bacula-devel] Bacula release 9.4.2

2019-02-07 Thread Wanderlei Huttel
Hello Kern Can you take a look in the manual? https://www.bacula.org/9.4.x-manuals/en/main/Main_Reference.html I've been noticed in the manuals since 9.X versions a bad encoding I guess https://www.bacula.org/9.0.x-manuals/en/main/Main_Reference.html Copyright © 2000-2018, Kern Sibbald New

Re: [Bacula-users] Exclude not working

2019-01-15 Thread Wanderlei Huttel
t root4096 2019-01-15 17:46:23 > /root/YETANOTHERTEST > -rw-r--r-- 1 root root 100 2017-01-08 14:44:12 > /root/.cshrc > -rw--- 1 root root 431 2018-12-19 18:56:30 > /root/.mysql_history > -rw-r--r-- 1 root root

Re: [Bacula-users] Exclude not working

2019-01-15 Thread Wanderlei Huttel
Hello Stefanie I like to include another option only to deal the exclude files FileSet { Name = "testnix-2017" Include { Options { wilddir = "/*/nobackup" wildfile = "*.tmp" Exclude = yes } Options { signature = MD5 compression = GZIP

Re: [Bacula-users] Baculum restorations issues

2019-01-11 Thread Wanderlei Huttel
Are you using CentOS or Debian? Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em sex, 11 de jan de 2019 às 09:24, Chris Wilkinson escreveu: > My Portuguese is not so good  > > Regards > Chris Wilkinson > > On Fri, 11 Jan 2019, 11:22 am Wanderlei Huttel wrote

Re: [Bacula-users] Baculum restorations issues

2019-01-11 Thread Wanderlei Huttel
ink for the installation instructions? The > docs folder appears to be old. > > Regards > Chris Wilkinson > > On Fri, 11 Jan 2019, 9:34 a.m. Wanderlei Huttel wrote: > >> Hello Frederic >> >> I have a fork o Webacula with a new visual and some improvements. >

Re: [Bacula-users] Virtual full backup ends with error

2019-01-11 Thread Wanderlei Huttel
Hello Azur It looks that problem was an error on the connection: *11-jan 05:42 server00-dir JobId 56875: Error: Director's connection to SD for this Job was lost. * You could try enable "Heartbeat Interval in your config files:

Re: [Bacula-users] Baculum restorations issues

2019-01-11 Thread Wanderlei Huttel
Hello Frederic I have a fork o Webacula with a new visual and some improvements. https://github.com/wanderleihuttel/webacula You cant take a look in the screens here: https://github.com/wanderleihuttel/webacula/wiki Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qui, 10 de jan

Re: [Bacula-users] changing bacula files location

2019-01-10 Thread Wanderlei Huttel
Hello Elm Yes only this. But all volumes must be moved to the new disk. Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qui, 10 de jan de 2019 às 16:06, Elma escreveu: > Hi, > > If I want to change the storage location of some bacula backup, let's say > from the old disk to the

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread Wanderlei Huttel
Hello David I know that is not an elegant way, but you could try to execute a script calling another one I don't know if will works, but you can try. #!/bin/bash nohup caffeinate -s bacula-idle-watch.sh >/dev/null 2>&1 http://www.bacula.com.br Em seg, 7 de jan de 2019 às 17:06, David Brodbeck

Re: [Bacula-users] bacula-enterprise-win64-7.4.4 <> bacula-win64-9.2.2 with bacula server upgrade 7.4.4 to 9.2.2

2018-12-11 Thread Wanderlei Huttel
Hello Olivier I also had the same problem, but after a full backup it returned to normal behavior Atenciosamente *Wanderlei Hüttel* http://www.bacula.com.br Em ter, 11 de dez de 2018 às 08:40, Olivier Delestre < olivier.deles...@univ-rouen.fr> escreveu: > Hi, > > Recently, i upgrade my

Re: [Bacula-users] Changing and reloading query.sql

2018-12-05 Thread Wanderlei Huttel
Hello Chris Are you sure you are using the correct query file? I am running bacula 9.2.2 and do not need to reload bconsole. I only access the bconsole again and run the command query Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qua, 5 de dez de 2018 às 09:57, Christopher

[Bacula-users] Job of "Verify Data" stuck

2018-12-03 Thread Wanderlei Huttel
Hello I was making some tests with Verify Jobs, level=Data, and is not the first time that I've noticed that the same Job got stuck (and is not so big). The real size of this Job is near 51.95 GB (without compression) and 33.06 GB (with compression)

Re: [Bacula-users] Migrating from MariaDB to PostgreSQL

2018-11-18 Thread Wanderlei Huttel
Hello George. I don't know why, but I guess is the default charset of Bacula with PostgreSQL. I had troubles with "Log" table when had Windows Jobs with errors. But how I only had a few errors, I updated some informations in the MySQL Catalog manually (using update), and generate this single

Re: [Bacula-users] [Bacula-devel] Problem in Bacula Windows Client 9.2.2

2018-11-15 Thread Wanderlei Huttel
Hello Kern I've opened a bug report. Take a look please. http://bugs.bacula.org/view.php?id=2427 Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em qui, 15 de nov de 2018 às 12:40, Wanderlei Huttel < wanderleihut...@gmail.com> escreveu: > Hello Kern > > I've got

Re: [Bacula-users] [Bacula-devel] Bacula Community Packages Debian Outdated

2018-10-25 Thread Wanderlei Huttel
> Bacula 9.2.1 packages will be available within the next few days > > Best regards > > Davide > > On Thu, 4 Oct 2018 at 15:37, Wanderlei Huttel > wrote: > >> Hello >> >> The latest version of Bacula Community (9.2.1) was released in August 14, >> 20

Re: [Bacula-users] Bacula Community Packages Debian Outdated

2018-10-16 Thread Wanderlei Huttel
Hello Kern Can you help? Em qui, 4 de out de 2018 às 10:32, Wanderlei Huttel < wanderleihut...@gmail.com> escreveu: > Hello > > The latest version of Bacula Community (9.2.1) was released in August 14, > 2018, > but in the Bacula Community Packages Repository there isn'

[Bacula-users] Bacula Community Packages Debian Outdated

2018-10-04 Thread Wanderlei Huttel
Hello The latest version of Bacula Community (9.2.1) was released in August 14, 2018, but in the Bacula Community Packages Repository there isn't still the updated packages. The last one is 9.0.8 for Debian 9 stretch. Best regards *Wanderlei Hüttel* http://www.bacula.com.br

Re: [Bacula-users] Mass delete volumes with status "Error"

2018-09-19 Thread Wanderlei Huttel
Hello Bill You can use a shell script to do this. Take a look #!/bin/bash clear echo "list pools" | bconsole | grep "[+|\|]" read -p "Type the name of Pool you want to

Re: [Bacula-users] [Bacula-announce] Bacula Release Version 9.2.1

2018-08-15 Thread Wanderlei Huttel
ttempt to avoid MySQL complaints about not allowing zero or empty in > DATETIME > – Add M_SECURITY when connection is bad + fix bug where invalid probes > sent to > Dir > – baculum: Fix schedule single day value setting > – Fix bug #2286 copied jobs always have level=Incremental >

Re: [Bacula-users] Upgrade Bacula from 7.4.2 to 9.2.0. Fatal error: sql_create.c: ... failed. ERR=Field 'StartTime' doesn't have a default value

2018-08-08 Thread Wanderlei Huttel
a as recommended) and install a build of Bacula with posgres. > Alternatively, simply install the postgres version in a different > directory. > > Best regards, > Kern > > On 08/08/2018 12:51 AM, George Anchev via Bacula-users wrote: > > On Tue, 7 Aug 2018 14:45:15 -0300 Wander

Re: [Bacula-users] Upgrade Bacula from 7.4.2 to 9.2.0. Fatal error: sql_create.c: ... failed. ERR=Field 'StartTime' doesn't have a default value

2018-08-07 Thread Wanderlei Huttel
If somebody wants to migrate from MySQL to PostgreSQL I've created a script to simplify this. https://github.com/wanderleihuttel/bacula-utils/tree/master/convert_mysql_to_postgresql Best regards *Wanderlei Hüttel* http://www.bacula.com.br Em ter, 7 de ago de 2018 às 14:33, Kern Sibbald

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-07-14 Thread Wanderlei Huttel
>> Ok, I'll check this tomorrow. >> >> Davide >> >> On Thu, 28 Jun 2018 at 19:35, Wanderlei Huttel >> wrote: >> >>> Hello Davide >>> >>> But I've installed, as I described in the previous email >>> >>> cd

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-28 Thread Wanderlei Huttel
Hüttel* http://www.bacula.com.br Em qui, 28 de jun de 2018 às 14:32, Davide Franco escreveu: > Hello Wanderlei, > > You need to install Bacula signing key, it’s described in the white paper. > > Hope it helps > > Davide > > On Thu, 28 Jun 2018 at 18:10, Wanderlei Huttel

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-28 Thread Wanderlei Huttel
packages for Debian Stretch are available in bacula.org repo. > > Hope it helps > > Best regards > > Davide > > On Thu, Jun 28, 2018 at 1:46 PM, Wanderlei Huttel < > wanderleihut...@gmail.com> wrote: > >> Hello Davide >> >> I also having problems with p

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-28 Thread Wanderlei Huttel
ula.com.br Em qua, 27 de jun de 2018 às 09:04, Wanderlei Huttel < wanderleihut...@gmail.com> escreveu: > Hello Davide > > Yes. I followed all of your steps. > > Enviado de Motorola Moto X2 > > Wanderlei Hüttel > > Em qua, 27 de jun de 2018 08:29, Davide Franco &

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-27 Thread Wanderlei Huttel
ula-Community 3.0 M > Installing for dependencies: > bacula-libs > x86_64 > 9.0.8-2.el7 > Bacula-Community 772 k > > Transaction Summary > > === > Install 1 Package (+1 Dependent package) > >

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-27 Thread Wanderlei Huttel
ula-Community 3.0 M > Installing for dependencies: > bacula-libs > x86_64 > 9.0.8-2.el7 > Bacula-Community 772 k > > Transaction Summary > > === > Install 1 Package (+1 Dependent package) > >

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-27 Thread Wanderlei Huttel
Hello In the chapter 15, the correct command to import bacula key is: rpm --import Bacula-4096-Distribution-Verification-key.asc Instead: rpm --import add Bacula-4096-Distribution-Verification-key.asc I've followed Davide steps but MariaDB packages are still been showed as dependencies

Re: [Bacula-users] Install Bacula 9.0.8 with rpm ( repo )

2018-06-19 Thread Wanderlei Huttel
Hello I noticed the same "problem" . In the whitepaper bacula.repo is mentioned as "https" and "www", but this address is wrong. The correct address that worked is without "www" and "https". [Bacula-Community] name=CentOS - Bacula - Community

Re: [Bacula-users] [Bacula-devel] Bacula Status Report -- 9 June 2018

2018-06-10 Thread Wanderlei Huttel
Hello Kern Can you take a look in the debian repo. It looks that the debian directory are "duplicated" (too many folders comparing with centos repository) Debian: http://bacula.org/packages/X/debs/9.0.8/stretch/amd64/dists/stretch/main/binary-amd64/ CentOS

Re: [Bacula-users] bad response to job command

2018-05-23 Thread Wanderlei Huttel
Hello Ian Can you inform the version of all daemons (bacula-dir, bacula-sd and bacula-fd) ? bacula-dir and bacula-sd always must be in the same version, and bacula-fd never can't be in a higher version o bacula-dir Is interesting include heartbeat interval in all bacula configuration, like

Re: [Bacula-users] Missing jsons

2018-05-18 Thread Wanderlei Huttel
gt; I installed from the Debian wheezy repo. > > Best > Chris > > > On Thu, 17 May 2018, 11:41 p.m. Wanderlei Huttel, < > wanderleihut...@gmail.com> wrote: > >> Hello Chris >> >> What version of bacula are you using? >> >> Enviado de Mo

Re: [Bacula-users] Missing jsons

2018-05-17 Thread Wanderlei Huttel
Hello Chris What version of bacula are you using? Enviado de Motorola Moto X2 Wanderlei Hüttel Em qui, 17 de mai de 2018 17:07, Chris Wilkinson escreveu: > I have installed Bacula and Baculum on Debian wheezy but seem to be > missing the jsons (/usr/sbin/bsdjson

Re: [Bacula-users] [Bacula-devel] New Bacula web site

2018-05-07 Thread Wanderlei Huttel
Hello What a great job!. I've found some things that need to be fixed! - The binary download center doesn't contain the new windows binaries 9.0.7 http://new.bacula.org/binary-download-center/ - The source download center doesn't contain the sources from the last release 9.0.7

Re: [Bacula-users] Bacula cannot create new Jobs - incorrect Datetime value

2018-05-03 Thread Wanderlei Huttel
Hello Peter This is a problem of MySQL 5.7. There was another question on the list a few days ago with a solution. Take a look in this link https://github.com/wanderleihuttel/bacula-utils/blob/master/dicas/mysql_sql-mode.md Enviado de Motorola Moto X2 Wanderlei Hüttel Em qui, 3 de mai de

Re: [Bacula-users] [Bacula-devel] Release version 9.0.7 of Bacula

2018-04-19 Thread Wanderlei Huttel
Hello Kern Thanks for release again Windows Binaries for community! This is a great news! I've made some tests in Windows Server 2012 / Windows 10 and I noticed that the installation is keeping some installation files in the folder "working" and doesn't include a password in bacula-fd.conf and

[Bacula-users] Bacula Windows Client 7.4.4 unavailable to download

2018-04-16 Thread Wanderlei Huttel
Hello Kern Can you check why the Windows Clients 7.4.4 are unavailable in www.bacula.org? Best Regards *Wanderlei Hüttel* http://www.huttel.com.br -- Check out the vibrant tech community on one of the world's most

Re: [Bacula-users] Can't find bacula.sql?

2018-04-03 Thread Wanderlei Huttel
; E: tplan...@bkaarchs.com > W: www.bkaarchitects.com <http://www.bkaarchs.com> > > [image: BKA/LOGO] > On 4/2/2018 10:33 AM, Wanderlei Huttel wrote: > > Hello Thomas > > Go to folder where the script " make_catalog_backup.pl " generate the > backup and ex

Re: [Bacula-users] Can't find bacula.sql?

2018-04-02 Thread Wanderlei Huttel
Hello Thomas Go to folder where the script " make_catalog_backup.pl " generate the backup and execute the following command: cat make_catalog_backup.pl | grep "my \$wd Verify if the path of the script is the same of CatalogBackup FileSet. Best Regards *Wanderlei Hüttel*

Re: [Bacula-users] Windows server restore problem

2018-03-14 Thread Wanderlei Huttel
Hello Shawn It's been probably that the files are hidden. Try to give the correct permissions to this folder, or try to remove "c:\tmp\bacula-restores" and do another restore. Best regards *Wanderlei Hüttel* http://www.huttel.com.br 2018-03-14 14:11 GMT-03:00 Shawn Rappaport

Re: [Bacula-users] Run Job Script not Replacing %f Character Substitution

2018-03-13 Thread Wanderlei Huttel
Hello Heitor I guess the option "%f" only work in the director side, It must be only on RunBeforeJob or RunAfterJob. Before submitting the specified command to the operating system, Bacula performs character substitution of the following characters: %% = % %b = Job Bytes %c =

Re: [Bacula-users] Backup of large volumes never completes - keeps restarting

2018-02-23 Thread Wanderlei Huttel
Hello Fouri Please, inform your Bacula version? Atenciosamente *Wanderlei Hüttel* http://www.huttel.com.br 2018-02-23 5:32 GMT-03:00 Fourie Joubert : > Hi Folks > > I know similar topics have been addressed before in many posts, but none > of them provide me with a

  1   2   3   >