Discussion:
Webacula and Bacula-Web Installation
chri.s
2013-10-14 20:49:39 UTC
Permalink
Hi at all,

is there any how to out there for installing these both web solutions on bareos? Somehow both doesnt run in my bareos testing environment.

Best regards,

Chris
Sascha Bejer
2013-10-15 07:53:54 UTC
Permalink
Hi,

Bacula-web works out of the box with bareos for me, following the
instructions on its website.
Webacula needs two small code patches, and worked afterwards. I just can't
find the instructions now...

Also there is a ticket for packetized webacula,
https://bugs.bareos.org/print_bug_page.php?bug_id=77
I think there are RPM test packages you can try. I´m waiting for some
deb´s :).

BR, Sascha

-----Original Message-----
From: bareos-***@googlegroups.com [mailto:bareos-***@googlegroups.com]
On Behalf Of chri.s
Sent: Montag, 14. Oktober 2013 22:50
To: bareos-***@googlegroups.com
Subject: [bareos-users] Webacula and Bacula-Web Installation

Hi at all,

is there any how to out there for installing these both web solutions on
bareos? Somehow both doesnt run in my bareos testing environment.

Best regards,

Chris

--
You received this message because you are subscribed to the Google Groups
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to bareos-users+***@googlegroups.com.
To post to this group, send email to bareos-***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
.
________________________________________
The contents of this e-mail message and any attachments are confidential and are intended solely for the addressee. The information may also be legally privileged.
This transmission is sent in trust, and the sole purpose of delivery to the intended recipient. If you have received this transmission in error, any use, reproduction or dissemination of this transmission is strictly prohibited.
If you are not the intended recipient, please immediately notify the sender by reply e-mailer and delete this message and its attachments, if any.
Thank you for your cooperation.
________________________________________
--
You received this message because you are subscribed to the Google Groups "bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bareos-users+***@googlegroups.com.
To post to this group, send email to bareos-***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Frank Bergkemper
2013-10-15 09:06:25 UTC
Permalink
Hi Chris,

as mentioned before if you followed the instruction, in addition there
are two small code changes needed.

1.

Open the file webacula/html/index.php and go to line 22.

define('BACULA_VERSION', 12); // Bacula Catalog version

and replace it with the following:

define('BACULA_VERSION', 2001); // Bacula Catalog version

2.

Open the file webacula/application/models/Media.php and go to line 98.

$select->from('Media',
array('MediaId', 'PoolId', 'StorageId',
'VolumeName', 'VolStatus', 'VolBytes',
'MaxVolBytes','VolJobs', 'VolRetention',
'Recycle', 'Slot', 'InChanger', 'MediaType',
'FirstWritten', 'LastWritten',
'LabelDate', 'VolFiles', 'VolBlocks', 'VolMounts',
'VolParts', 'VolErrors', 'VolWrites', 'VolCapacityBytes',
'Enabled',
'ActionOnPurge', 'VolUseDuration', 'MaxVolJobs', 'MaxVolFiles',
'VolReadTime', 'VolWriteTime', 'EndFile', 'EndBlock',
'RecycleCount', 'InitialWrite','Comment'
));



As the VolParts column is not available in a Bareos Catalogue,
replace it with:

$select->from('Media',
array('MediaId', 'PoolId', 'StorageId',
'VolumeName', 'VolStatus', 'VolBytes', 'MaxVolBytes',
'VolJobs', 'VolRetention',
'Recycle', 'Slot', 'InChanger', 'MediaType',
'FirstWritten', 'LastWritten',
'LabelDate', 'VolFiles', 'VolBlocks', 'VolMounts',
'VolErrors', 'VolWrites', 'VolCapacityBytes', 'Enabled',
'ActionOnPurge', 'VolUseDuration', 'MaxVolJobs', 'MaxVolFiles',
'VolReadTime', 'VolWriteTime', 'EndFile', 'EndBlock',
'RecycleCount', 'InitialWrite','Comment'
));



Best regards,
Frank
Post by Sascha Bejer
Hi,
Bacula-web works out of the box with bareos for me, following the
instructions on its website.
Webacula needs two small code patches, and worked afterwards. I just can't
find the instructions now...
Also there is a ticket for packetized webacula,
https://bugs.bareos.org/print_bug_page.php?bug_id=77
I think there are RPM test packages you can try. I惴 waiting for some
deb愀 :).
BR, Sascha
-----Original Message-----
On Behalf Of chri.s
Sent: Montag, 14. Oktober 2013 22:50
Subject: [bareos-users] Webacula and Bacula-Web Installation
Hi at all,
is there any how to out there for installing these both web solutions on
bareos? Somehow both doesnt run in my bareos testing environment.
Best regards,
Chris
--
You received this message because you are subscribed to the Google Groups
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bareos-users+***@googlegroups.com.
To post to this group, send email to bareos-***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
chri.s
2013-10-17 16:58:28 UTC
Permalink
Post by Frank Bergkemper
Hi Chris,
as mentioned before if you followed the instruction, in addition there
are two small code changes needed.
1.
Open the file webacula/html/index.php and go to line 22.
define('BACULA_VERSION', 12); // Bacula Catalog version
define('BACULA_VERSION', 2001); // Bacula Catalog version
2.
Open the file webacula/application/models/Media.php and go to line 98.
$select->from('Media',
array('MediaId', 'PoolId', 'StorageId',
'VolumeName', 'VolStatus', 'VolBytes',
'MaxVolBytes','VolJobs', 'VolRetention',
'Recycle', 'Slot', 'InChanger', 'MediaType',
'FirstWritten', 'LastWritten',
'LabelDate', 'VolFiles', 'VolBlocks', 'VolMounts',
'VolParts', 'VolErrors', 'VolWrites', 'VolCapacityBytes',
'Enabled',
'ActionOnPurge', 'VolUseDuration', 'MaxVolJobs', 'MaxVolFiles',
'VolReadTime', 'VolWriteTime', 'EndFile', 'EndBlock',
'RecycleCount', 'InitialWrite','Comment'
));
As the VolParts column is not available in a Bareos Catalogue,
$select->from('Media',
array('MediaId', 'PoolId', 'StorageId',
'VolumeName', 'VolStatus', 'VolBytes', 'MaxVolBytes',
'VolJobs', 'VolRetention',
'Recycle', 'Slot', 'InChanger', 'MediaType',
'FirstWritten', 'LastWritten',
'LabelDate', 'VolFiles', 'VolBlocks', 'VolMounts',
'VolErrors', 'VolWrites', 'VolCapacityBytes', 'Enabled',
'ActionOnPurge', 'VolUseDuration', 'MaxVolJobs', 'MaxVolFiles',
'VolReadTime', 'VolWriteTime', 'EndFile', 'EndBlock',
'RecycleCount', 'InitialWrite','Comment'
));
Best regards,
Frank
Post by Sascha Bejer
Hi,
Bacula-web works out of the box with bareos for me, following the
instructions on its website.
Webacula needs two small code patches, and worked afterwards. I just can't
find the instructions now...
Also there is a ticket for packetized webacula,
https://bugs.bareos.org/print_bug_page.php?bug_id=77
I think there are RPM test packages you can try. I�m waiting for some
deb�s :).
BR, Sascha
-----Original Message-----
On Behalf Of chri.s
Sent: Montag, 14. Oktober 2013 22:50
Subject: [bareos-users] Webacula and Bacula-Web Installation
Hi at all,
is there any how to out there for installing these both web solutions on
bareos? Somehow both doesnt run in my bareos testing environment.
Best regards,
Chris
--
You received this message because you are subscribed to the Google Groups
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an
For more options, visit https://groups.google.com/groups/opt_out.
Hi Frank,

thanks runs well.

kind Regards,

Chris
--
You received this message because you are subscribed to the Google Groups "bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bareos-users+***@googlegroups.com.
To post to this group, send email to bareos-***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
t***@gmail.com
2013-10-15 20:46:31 UTC
Permalink
Hi folks,

I using Almir

https://github.com/iElectric/almir/

and I'm not change code.
Post by chri.s
Hi at all,
is there any how to out there for installing these both web solutions on bareos? Somehow both doesnt run in my bareos testing environment.
Best regards,
Chris
chri.s
2013-10-17 20:31:12 UTC
Permalink
Post by t***@gmail.com
Hi folks,
I using Almir
https://github.com/iElectric/almir/
and I'm not change code.
Post by chri.s
Hi at all,
is there any how to out there for installing these both web solutions on bareos? Somehow both doesnt run in my bareos testing environment.
Best regards,
Chris
I will give it a try. Do i need to install nginx or can i run it just with apache2?

Kind regards,

Chris
Jörg Steffens
2013-10-18 08:12:34 UTC
Permalink
Post by t***@gmail.com
Hi folks,
I using Almir
https://github.com/iElectric/almir/
and I'm not change code.
Post by chri.s
Hi at all,
is there any how to out there for installing these both web solutions on bareos? Somehow both doesnt run in my bareos testing environment.
the easiest way to test webacula and bacula-web is to use the Bareos
Appliance at http://susestudio.com/a/FeEmbr/bareos-64-bit-nightl
It already includes working versions of webacula and bacula-web, see
http://www.bareos.org/en/download.html

In the long run, we plan to improve the webacula packages already
available at http://download.bareos.org/bareos/contrib/ (currently only
RPMs).

regards,
Jörg
--
Jörg Steffens ***@bareos.com
Bareos GmbH & Co. KG http://www.bareos.com

Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
Komplementär: Bareos Verwaltungs-GmbH
Geschäftsführer:
S. Dühr, M. Außendorf, Jörg Steffens, P. Storz, M. v. Wieringen
--
You received this message because you are subscribed to the Google Groups "bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bareos-users+***@googlegroups.com.
To post to this group, send email to bareos-***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Loading...