Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Kern Sibbald
Oops, my error.  I was looking at a file that was created with the 
Enterprise Source.


The correct version for the current community version is actually 16 
(not 1019, which is the BEE version).


Anyway, I see that your problem is resolved.

Best regards,

Kern


On 11/08/2017 03:44 PM, Kern Sibbald wrote:

Either it is a Bacula bug, or you are not using version 9.0.x


On 11/08/2017 02:40 PM, bernhard.glomm wrote:

UPDATE Version SET VersionId=1019;

why is that so when bacula-director want version 16 instead of 15 as 
said in the logfile


"Fatal error: Version error for database "bacula". Wanted 16, got 15"


On 2017-11-08 13:44, Kern Sibbald wrote:

Hello,

In source form the script may not be too useful because the paths are
different for each packager.  I recommend that you look at your binary
files as they should have included the script.  You can also do:

find / -name "update_bacula_tables"

if there are multiple copies, you will need to look at either
update_postgresql_tables or update_mysql_tables (depending on what
database you are using) and make sure it has:

UPDATE Version SET VersionId=1019;

as the last UPDATE Version command in the file.

So, in your upgrade the version will go from 15 up to 1019 in 
several updates.


Best regards,

Kern


On 11/08/2017 01:23 PM, bernhard.glomm wrote:
?? you mean the script might be in the source packages but not in 
the binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
    15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1
amd64    transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947


-- 



Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht 

Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Kern Sibbald

Either it is a Bacula bug, or you are not using version 9.0.x


On 11/08/2017 02:40 PM, bernhard.glomm wrote:

UPDATE Version SET VersionId=1019;

why is that so when bacula-director want version 16 instead of 15 as 
said in the logfile


"Fatal error: Version error for database "bacula". Wanted 16, got 15"


On 2017-11-08 13:44, Kern Sibbald wrote:

Hello,

In source form the script may not be too useful because the paths are
different for each packager.  I recommend that you look at your binary
files as they should have included the script.  You can also do:

find / -name "update_bacula_tables"

if there are multiple copies, you will need to look at either
update_postgresql_tables or update_mysql_tables (depending on what
database you are using) and make sure it has:

UPDATE Version SET VersionId=1019;

as the last UPDATE Version command in the file.

So, in your upgrade the version will go from 15 up to 1019 in several 
updates.


Best regards,

Kern


On 11/08/2017 01:23 PM, bernhard.glomm wrote:
?? you mean the script might be in the source packages but not in 
the binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
    15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1
amd64    transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947


-- 



Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing 

Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread bernhard.glomm

UPDATE Version SET VersionId=1019;

why is that so when bacula-director want version 16 instead of 15 as 
said in the logfile


"Fatal error: Version error for database "bacula". Wanted 16, got 15"


On 2017-11-08 13:44, Kern Sibbald wrote:

Hello,

In source form the script may not be too useful because the paths are
different for each packager.  I recommend that you look at your binary
files as they should have included the script.  You can also do:

find / -name "update_bacula_tables"

if there are multiple copies, you will need to look at either
update_postgresql_tables or update_mysql_tables (depending on what
database you are using) and make sure it has:

UPDATE Version SET VersionId=1019;

as the last UPDATE Version command in the file.

So, in your upgrade the version will go from 15 up to 1019 in several 
updates.


Best regards,

Kern


On 11/08/2017 01:23 PM, bernhard.glomm wrote:
?? you mean the script might be in the source packages but not in the 
binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
    15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1
amd64    transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947



--


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 
Check out the vibrant tech community on one of the world's most

engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin (Charlottenburg), 
HRB 57947

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Martin Simmons
You could try:

dpkg -S update_mysql_tables

I think it should be here:

/usr/share/bacula-director/update_mysql_tables

__Martin


> On Wed, 08 Nov 2017 11:58:14 +0100, bernhard glomm said:
> 
> hi all
> after a regular apt-get update && apt-get upgrade
> on a "trusty" ubuntu system
> the upgrade of package bacula-director FAILED
> with the following errors in bacula_daemon.log:
> 
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for database 
> "bacula". Wanted 16, got 15
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog 
> "", database "bacula".
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for database 
> "bacula". Wanted 16, got 15
> 08-Nov 10:27 bacula-dir ERROR TERMINATION
> Please correct configuration file: /etc/bacula/bacula-dir.conf
> 
> I can't find any
> 
> update_mysql_tables
> 
> script or the like,
> has anybody successfully upgraded bacula-director to version:
> 
> [/0]:/tmp # dpkg -l | egrep bacula-director
> iF  bacula-director   9.0.4+dfsg-2+hawk~trusty+1 
>  amd64network backup service - Director daemon
> iU  bacula-director-common9.0.4+dfsg-2+hawk~trusty+1 
>  amd64transitional package for bacula-director
> ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1 
>  amd64network backup service - MySQL storage for Director
> 
> Any hint how to proceed from here is VERY welcome.
> 
> best regards
> 
> Bernhard
> 
> 
> Ecologic Institut gemeinnuetzige GmbH
> Pfalzburger Str. 43/44, D-10717 Berlin
> Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
> Sitz der Gesellschaft / Registered Office: Berlin (Germany)
> Registergericht / Court of Registration: Amtsgericht Berlin (Charlottenburg), 
> HRB 57947
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
> 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Olivier Delestre

I use Git for compil from source.

And to have a v9.x.x not in binary (?) ... i under CentOs 7.4 / Postgres

Prod -> bacula v7.4.7
Test -> bacula v9.0.4 ( -> 9.0.5 at 20171102 )


Le 08/11/2017 à 13:23, bernhard.glomm a écrit :
?? you mean the script might be in the source packages but not in the 
binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
    15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1
amd64    transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947


-- 



Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Kern Sibbald

Hello,

In source form the script may not be too useful because the paths are 
different for each packager.  I recommend that you look at your binary 
files as they should have included the script.  You can also do:


find / -name "update_bacula_tables"

if there are multiple copies, you will need to look at either 
update_postgresql_tables or update_mysql_tables (depending on what 
database you are using) and make sure it has:


UPDATE Version SET VersionId=1019;

as the last UPDATE Version command in the file.

So, in your upgrade the version will go from 15 up to 1019 in several 
updates.


Best regards,

Kern


On 11/08/2017 01:23 PM, bernhard.glomm wrote:
?? you mean the script might be in the source packages but not in the 
binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
    15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1
amd64    transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64    network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947


-- 



Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread bernhard.glomm
?? you mean the script might be in the source packages but not in the 
binary packages ??

bizarre but I will have a look



On 2017-11-08 13:03, Olivier Delestre wrote:

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
15

And 16 for version 9 (?)

 @page { margin: 2cm } p { margin-bottom: 0.25cm; line-height: 120% }
pre.cjk { font-family: "NSimSun", monospace } a:link { so-language:
zxx }

Le 08/11/2017 à 11:58, bernhard.glomm a écrit :


hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director   9.0.4+dfsg-2+hawk~trusty+1
amd64network backup service - Director daemon
iU  bacula-director-common9.0.4+dfsg-2+hawk~trusty+1
amd64transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
amd64network backup service - MySQL storage for
Director

Any hint how to proceed from here is VERY welcome.

best regards

Bernhard

Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin
(Charlottenburg), HRB 57947



--


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin (Charlottenburg), 
HRB 57947

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Heitor Faria

> hi all

Hello, Bernhard,

> after a regular apt-get update && apt-get upgrade
> on a "trusty" ubuntu system
> the upgrade of package bacula-director FAILED
> with the following errors in bacula_daemon.log:
> 
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for database
> "bacula". Wanted 16, got 15
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog
> "", database "bacula".
> 08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for database
> "bacula". Wanted 16, got 15
> 08-Nov 10:27 bacula-dir ERROR TERMINATION
> Please correct configuration file: /etc/bacula/bacula-dir.conf
> 
> I can't find any
> 
> update_mysql_tables
> 
> script or the like,
> has anybody successfully upgraded bacula-director to version:
> 
> [/0]:/tmp # dpkg -l | egrep bacula-director
> iF  bacula-director   9.0.4+dfsg-2+hawk~trusty+1
> amd64network backup service - Director daemon
> iU  bacula-director-common9.0.4+dfsg-2+hawk~trusty+1
> amd64transitional package for bacula-director
> ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1
> amd64network backup service - MySQL storage for Director
> 
> Any hint how to proceed from here is VERY welcome.

Probably this package built was incomplete (that's one reason I like to build 
Bacula from source - http://bacula.us/compilation).
Anyway, I'm sending my 9.0.3 Ubuntu build update script attached, so you can 
try your luck.

> best regards

Regards,

> Bernhard
> 
> 
> Ecologic Institut gemeinnuetzige GmbH
> Pfalzburger Str. 43/44, D-10717 Berlin
> Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
> Sitz der Gesellschaft / Registered Office: Berlin (Germany)
> Registergericht / Court of Registration: Amtsgericht Berlin (Charlottenburg),
> HRB 57947
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

-- 
=== 
Heitor Medrado de Faria | CEO Bacula do Brasil & USA | Visto EB-1 | LPIC-III | 
EMC 05-001 | ITIL-F 
• Não seja tarifado pelo tamanho dos seus backups, conheça o Bacula Enterprise 
http://www.bacula.com.br/enterprise/ 
• Ministro treinamento e implementação in-company do Bacula Community 
http://www.bacula.com.br/in-company/ 
Brazil +55 (61) 98268-4220 | USA +1 (323) 300-5387 | www.bacula.com.br 
 
Indicamos as capacitações complementares: 
Shell básico e Programação em Shell com Julio Neves | Zabbix com Adail Host. 



update_mysql_tables
Description: application/shellscript
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Fatal error: Version error for database "bacula". Wanted 16, got 15

2017-11-08 Thread Olivier Delestre

For me with bacula 7.4.7
/usr/local/src/bacula/bacula/src/cats/update_bacula_tables et 
grant_bacula_privileges ( with user postgres )

bacula=# select * from version;
 versionid
---
15

And 16 for version 9 (?)



Le 08/11/2017 à 11:58, bernhard.glomm a écrit :

hi all
after a regular apt-get update && apt-get upgrade
on a "trusty" ubuntu system
the upgrade of package bacula-director FAILED
with the following errors in bacula_daemon.log:

08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for 
database "bacula". Wanted 16, got 15
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Could not open Catalog 
"", database "bacula".
08-Nov 10:27 bacula-dir JobId 0: Fatal error: Version error for 
database "bacula". Wanted 16, got 15

08-Nov 10:27 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf

I can't find any

update_mysql_tables

script or the like,
has anybody successfully upgraded bacula-director to version:

[/0]:/tmp # dpkg -l | egrep bacula-director
iF  bacula-director 9.0.4+dfsg-2+hawk~trusty+1     
amd64    network backup service - Director daemon
iU  bacula-director-common 9.0.4+dfsg-2+hawk~trusty+1     
amd64 transitional package for bacula-director
ii  bacula-director-mysql 9.0.4+dfsg-2+hawk~trusty+1     
amd64    network backup service - MySQL storage for Director


Any hint how to proceed from here is VERY welcome.

best regards

Bernhard


Ecologic Institut gemeinnuetzige GmbH
Pfalzburger Str. 43/44, D-10717 Berlin
Geschaeftsfuehrerin / Director: Dr. Camilla Bausch
Sitz der Gesellschaft / Registered Office: Berlin (Germany)
Registergericht / Court of Registration: Amtsgericht Berlin 
(Charlottenburg), HRB 57947


-- 


Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users