Re: [bareos-users] Re: Cannot mount LTO5 Tapes

2024-07-16 Thread Andreas Rogge

Am 15.07.24 um 20:56 schrieb Alan Brown:


_ALL_ LTO drives (even LTO-1) can handle block sizes of at least 1MB and 
you would need to be running a pretty awful (5-10MB/s) scsi adaptor for 
a restriction there


You wish!

After changing the default block size to 1 MB we have seen more than one 
large enterprise setup that could not handle 1 MB blocks.
The drives were fine, the controllers were fine, but some intermediate 
component (*cough* FC director *cough*) didn't allow the large SCSI 
frames to pass.


Also, there are people attaching their drives to the external 
SAS-interface of (rather cheap) RAID controllers. Some of these don't 
allow block sizes of 1 MB either.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/c0729908-19f0-48e1-b0d4-dd76d5cbccab%40bareos.com.


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Strange config error "out of the blue"

2024-06-27 Thread Andreas Rogge
the file that is parsed before the one the error is displayed for is 
missing a closing brace.
You can run "sudo -u bareos bareos-dir -t -d 100" which will print 
debugging output including the files the parser opens to figure out 
which file is bad.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/10d03510-0813-45eb-b1eb-57340e26408a%40bareos.com.


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Backup Error with virtual full

2024-06-17 Thread Andreas Rogge

Hi Philippe,

I know there can be misleading errors in Bareos. But when Bareos logs a 
"No such file or directory" from that location in the code, then the 
file or directory doesn't exist.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/4e823363-a80a-4f77-b3ed-0ae8138c6030%40bareos.com.


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: Bareos 22.1.5 not functional on Windows 7 32-bit

2024-06-13 Thread Andreas Rogge

Am 13.06.24 um 15:19 schrieb Joshua Myles:

Same on Windows 7 64-bit. I will submit a Github issue.


While I totally understand the requirement to have a Filedaemon for 
Windows 7 (even if it is long time EOL), I don't see how we could 
support Windows 7 in newer builds. Your can - of course - continue to 
use one of the older versions.
The same problem will probably occur when you try 21.1.10 or 23.0.3 on 
Windows 7.


However, I have heard that people built custom DLLs to support Blender 
and Python 3.9 on Windows 7. Maybe you can grab one of those to make it 
work.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/cf4962cb-039c-4e61-beaf-8117aee26e54%40bareos.com.


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Database error message after a long run backup job - ERROR: relation "batch" does not exist

2024-06-12 Thread Andreas Rogge

Am 12.06.24 um 00:57 schrieb Marcio Feldmann:

```
bareos-dir JobId 1439: Fatal error: cats/sql_create.cc:800 Fill Path 
table Query failed: INSERT INTO Path (Path) SELECT a.Path FROM ( SELECT 
DISTINCT Path FROM batch ) AS a WHERE NOT EXISTS ( SELECT Path FROM Path 
WHERE Path = a.Path ) : ERR=ERROR: relation "batch" does not exist

LINE 1: ...h) SELECT a.Path FROM ( SELECT DISTINCT Path FROM batch ) AS...
```


The table "batch" is a temporary per-job table. When Bareos loses the 
connection to the database, it will automatically re-establish the 
connection. However, all temporary tables will be gone and you will then 
eventually run into the issue you're seeing.
Did you - by any chance - restart the database server during the backup 
job or was there another reason why the connection would have been broken?


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/6ee79f0d-58a9-4eae-ac69-fcaddf8f0a1e%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] VMware Plugin TLS error

2024-05-23 Thread Andreas Rogge

Am 23.05.24 um 14:01 schrieb Max:

Hey Andreas,

[...]
and i still got the fatal error of the Plugin Dir not found. What itches 
me is that the myself.conf names calls specifically  python3 while the 
Plugin Definition in the FileSet says "python" as the docs say, is that 
correct?


Does a status client for that client list the python3 plugin as loaded?

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/1fa2875c-d30f-413d-bbda-fbc3bb643bb3%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] VMware Plugin TLS error

2024-05-23 Thread Andreas Rogge

In the Joblog it clearly states the following:

Fatal error: Plugin Directory not defined. Cannot use plugin: 
"python:module_name=bareos-fd-vmware:dc=DC:folder=/'Test 
VMs':vmname=auth-test61:vcserver=vc60.DOMAIN.local:vcuser=ans-vmware@DOMAIN.local:vcpass=PASSWORD:vcthumbprint=THUMBPRINT"


Basically:
- There is a fatal error
- You did not set "Plugin Directory"
- Therefore I cannot use the plugin

I guess you did not properly setup the python plugin in the FD.
Did you set Plugin Directory in the file daemon configuration?

Best Regards,
Andreas

Am 22.05.24 um 16:29 schrieb Max:

Hey Andreas,

my bad, I've tested multiple clients with the vmware-test-job, I had 
already a defined client for the auth-test61 machine, which throws 
following errors with the correct client:



The regular non-vmware backup works flawlessly on the auth-test61 machine.
Its just the vmware plugin which seems to have trouble establishing a valid
connection to create vmdk files.

I attached the Logs from a new failed jobs with the correct client 
selected + the part of the trace file for the director which captures 
the moment the Job failed.

I hope you can give me a hint in the right direction.

best regards
Max



Andreas Rogge schrieb am Dienstag, 21. Mai 2024 um 10:48:38 UTC+2:

Hi Max,

from the log output I'd say "status client=bareos-fd" will also not
work. You will need to ensure your director can talk to your client
first.

https://docs.bareos.org/Appendix/Troubleshooting.html#client-access-problems 
<https://docs.bareos.org/Appendix/Troubleshooting.html#client-access-problems>

Best Regards,
    Andreas

-- 
Andreas Rogge andrea...@bareos.com

Bareos GmbH & Co. KG Phone: +49 221-630693-86

http://www.bareos.com <http://www.bareos.com>

Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
Komplementär: Bareos Verwaltungs-GmbH
Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/495470fc-23a2-4a02-bca0-e7c3c7f326d7n%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/495470fc-23a2-4a02-bca0-e7c3c7f326d7n%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/de7bb7d0-9d62-46cb-bfdd-8ad86b544adb%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] VMware Plugin TLS error

2024-05-21 Thread Andreas Rogge

Hi Max,

from the log output I'd say "status client=bareos-fd" will also not 
work. You will need to ensure your director can talk to your client first.


https://docs.bareos.org/Appendix/Troubleshooting.html#client-access-problems

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/273c23a2-7ad6-44ef-9eb6-e1edb1551afa%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: Bareos with Amazon VTL issue

2024-05-06 Thread Andreas Rogge
Just for the record: I think this is a Bug in Amazon VTL. It pretends to 
be an LTO5 drive, but it doesn't behave like a LTO5 drive.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f366da84-e7dc-4a1e-9378-c6b4c1a929ea%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] bareos-tray-monitor - Windows 11 - "libpcre2-8-0.dll not found

2024-05-02 Thread Andreas Rogge

Hi Dirk,

Am 30.04.24 um 13:13 schrieb Dirk Koppka:

Did somone come across this error on Windows machines?
I realized that I probably broke that recently. It is "just" a packaging 
issue (i.e. that DLL should be in the package, but isn't).


I created an issue for this problem - feel free to comment or subscribe:
https://github.com/bareos/bareos/issues/1801

I also took the time to extract the DLL from the Fedora RPM and shared 
it here: https://filetransfer.io/data-package/e4UXDrLF#link
If you decide to download it from there, please check the sha256 
matches ab1c2d49c0d314a171131d7c855b1551dbb2c6b4e68ef39f52f1eded36384f5d

as I'm not sure how trustworthy that service is.

Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/30d95219-2a32-4d0e-84c1-7360e9000da4%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] bareos-dbcheck/bareos-dir -t fails everytime

2024-04-29 Thread Andreas Rogge

Hi Max,

Am 29.04.24 um 13:13 schrieb Max:
The database gets installed via our own postgres ansible role to meet 
our standards, the used repos are seen in the output of dnf info *postgres*:



[...]


Name : postgresql14
Version  : 14.11
Release  : 1PGDG.rhel9
Architektur  : x86_64
Größe    : 7.6 M
Quelle   : postgresql14-14.11-1PGDG.rhel9.src.rpm
Paketquelle  : @System
Aus Paketque : pgdg14

[...]

Yep. That's a third-party repository. While it is probably the "most 
official" version of PostgreSQL you can acquire, its libpq seems to be 
unhappy, because the Bareos build you're using was buillt with this:


Name : libpq
Version  : 13.11
Release  : 1.el9
Architecture : x86_64
Source   : libpq-13.11-1.el9.src.rpm
Repository   : rhel-9-for-x86_64-appstream-rpms

I'm not sure if there is a workaround to silence the warning or if 
you're possibly going to run into problems with that setup.

However, you can always build your own RPMs that link to the libpq you want.

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f0c0dc31-4427-4f89-8d1f-c41015ca7eb5%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] bareos-dbcheck/bareos-dir -t fails everytime

2024-04-29 Thread Andreas Rogge

Hi Max,

that is reported by libpq (i.e. the PostgreSQL client library). I guess 
you're using a third-party packaged libpq (instead of the one provided 
by Rocky).

As far as I can tell this is only a warning message.

Best Regards,
Andreas

Am 26.04.24 um 14:28 schrieb Max:

Hi guys,
I've got  a Rocky 9 Linux VM with a predeployed PostgreSQL-DB (14.11) 
via ansible.
The name, dbname, dbuser & dbpassword are set correctly in 
"/etc/bareos/bareos-dir.d/catalog/MyCatalog.conf" and the bconsole seem 
to work also.


I encounter the following error everytime I run "bareos-dbcheck" OR 
"bareos-dir -t"  with the bareos system user:


[bareos@storage-test01 ~]$ bareos-dir -t
bareos-dir: /usr/pgsql-14/lib/libpq.so.5: no version information 
available (required by /usr/lib64/bareos/libbareossql.so.23)


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/614ebb82-c40e-49ca-bd8b-04d0ca87847c%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Bareos Supported FreeBSD Version

2024-04-08 Thread Andreas Rogge

Hi Benedikt,

FreeBSD 13.3 and 14 are on my todo list and should be ready in a few 
days (or at worst in a few weeks).


Best Regards,
Andreas

Am 05.04.24 um 10:32 schrieb Benedikt Maya:

Hi folk,
is there any news if Bareos will be supported on higher versions of 
FreeBSD. As of now, it can go as high as FreeBSD 13.2, which is 
approaching its End-of-Life within 2 months on 30  of Jun 2024.

Many thanks

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/a32b5bab-37c9-4875-ad06-bd5eb7ed98edn%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/a32b5bab-37c9-4875-ad06-bd5eb7ed98edn%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/47a12131-8df7-464f-a2e5-85f437e25f57%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Bareos Encrypted Access to Postgres Database

2024-04-02 Thread Andreas Rogge

Good Morning,

Am 01.04.24 um 18:35 schrieb Marcio Feldmann:
> Does anyone got success setting up SSL access between Bareos Director
> Catalog and Postgres Database server?

I'm not sure if anyone got that running yet. However, if you'd share 
your experience with a few more details, we might be able to help and 
maybe we can improve the documentation so people can actually get that 
to work.
What exactly did you try to achieve? Just the PostgreSQL server with TLS 
and  certificate? Or did you also try to setup client certificates?

What configuration parameters did you play with and what happened?

Basically, a connection to PostgreSQL utilizing TLS is something that 
Bareos *should* be capable of.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/b104c1b5-8012-47a6-bf4f-af16c2397ed0%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Director Bug-Report

2024-04-02 Thread Andreas Rogge

Hi,
that behaviour is documented, but regularly overlooked.
The last paragraph of the Media Type[1] parameter states the following:

"""In addition, if you are using disk storage, each Device resource will 
generally have a different mount point or directory. In order for Bareos 
to select the correct Device resource, each one must have a unique Media 
Type."""


While there probably is room for improvement (feel free to file a PR to 
clarify the documentation), distinct storage locations (i.e. mount 
points / directories) require distinct media types.


Best Regards,
Andreas

[1] 
https://docs.bareos.org/Configuration/StorageDaemon.html#config-Sd_Device_MediaType


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/eb08957f-e6c0-4369-8d6f-afd5ba4c77cc%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: ARM64 Client

2024-04-02 Thread Andreas Rogge

Am 21.03.24 um 21:07 schrieb Chris Dos:

Hopefully official packages can be created one day aarch64.


We're currently refraining from that, as it would mean we would need to 
double our build-infrastructure (i.e. for every x86_64 machine we would 
need another aarch64 machine).
However, if you're looking for the client only and you don't need any 
plugins, we will try to provide at least the universal client for 
aarch64 in the future.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/051e3221-e65f-4908-b3b8-57b182f77f92%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Continue failed job

2024-03-20 Thread Andreas Rogge

Hi Jascha,

Am 18.03.24 um 20:22 schrieb Jascha Schubert:

I have now two questions:

1. Can I somehow continue the job, so that I don't have to start over?
Currently not. We have added the infrastructure for that in Bareos 23, 
but are still working on a way to actually resume the job and make sure 
it produces a meaningful result.


2. Can I set the waiting time to infinite, so that to job does not get 
aborted, when I take to long to change the tape?
Currently not. The device wait time is hard-coded at a large value. At 
some point the job has to give up and I also think that the 5 days you 
described are usually sufficient :)


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/11df1ca8-5305-44f8-8985-e828476aee12%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Missing dependency in bareos-storage-tape

2024-03-06 Thread Andreas Rogge

Hi Andreas,

apparently you're right.
We thought we had removed everything that depends on perl in Bareos 23. 
However, we missed that little inline perl script. Thanks for reporting 
this!


Best Regards,
Andreas

Am 06.03.24 um 08:50 schrieb Andreas Haase:

Hello,

Yesterday I installed a new server using Rocky Linux 9 and Bareos 23.0.2. While 
starting with a minimal installation, I came to a point, where Bareos WebUI was 
running, but did not display any tape drives oder library slots. The cause was, 
that Bareos WebUI seems to get this info through „stat slots“ from Bareos 
itself, but there a strange error message was displayed.

Long story short: a provided script mtx-changer from package 
bareos-storage-tape is being used to extract that information. Mtx-changer is a 
shell script also using perl, but perl wasn’t installed on the server. Maybe it 
would be good to add a dependency to perl to avoid this situation.

Regards,
Andreas



--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/b092a5ca-8be0-4ad9-9665-2e13626386fc%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Storage-Job hangs after canceling copy-job in director

2024-02-07 Thread Andreas Rogge

Hi Dennis,

Am 06.02.24 um 16:24 schrieb 'Dennis Benndorf' via bareos-users:
At the moment we are using 21.1.6 again as there was a crashing problem 
in 22(but same problem here) and 23 is not suitable for us because of 
the removed compatible mode as we have some solaris 10 servers which 
will hopefully turn off next near.


The compatible flag is only required if you have an old Bacula File 
Daemon. So if you would use the Bareos 16.2 File Daemon, which is the 
last one we packaged for Solaris 10 [1], it should still work with a 
Bareos 23 Director and Storage Daemon.
While this is not not officially supported and it will not do proper TLS 
(you'll have to set "TLS Require = no" in the Director's Client 
resource) we know that some users still run these old versions in 
production.


Best Regards,
Andreas

[1] https://download.bareos.com/bareos/release/16.2/unix/solaris/sparc/10/
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/fecdefbf-2dc4-435c-97e8-dc8db5ae2be3%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] VSS ERR=The process cannot access the file because it is being used by another process

2024-01-25 Thread Andreas Rogge

Yes, it is in the pre-release for 23 and also for 21.

Am 24.01.24 um 20:59 schrieb 'jo.go...@hosted-power.com' via bareos-users:
Ok that is cool, this similar exists for Bareos 23? Since we're already 
on 23.0.1, the 22.x would be also a lower version :)


On Wednesday 24 January 2024 at 16:49:31 UTC+1 Andreas Rogge wrote:

Hi Josh,

the backport has already happened in PR 1667. You can try the
pre-release packages from these subscription repositories:
https://download.bareos.com/bareos/testing/CD/bareos-22
<https://download.bareos.com/bareos/testing/CD/bareos-22>

Version 22.1.4~pre39 (and every newer version) should contain the fix.
You can safely install the packages from there. An upgrade to the
upcoming version 22.1.4 will be seamless.

Best Regards,
Andreas

Am 24.01.24 um 12:33 schrieb Joshua Myles:
 > I've only tested with one client, but 24.0.0~pre187.8e12c147a did
work
 > with no VSS errors. I'll be watching for this to be backported to 22
 > (subscription).
 >
 > Josh
 >
 > On Monday, January 22, 2024 at 11:37:51 AM UTC-5 Spadajspadaj wrote:
 >
 > __
 >
 > Yes, it does seem to be working!
 >
 > 22-Jan 14:16 dziura-fd JobId 17111: Generate VSS snapshots.
Driver="Win64 VSS"
 > 22-Jan 14:16 dziura-fd JobId 17111: VolumeMountpoints are not
processed as onefs = yes.
 > 22-Jan 14:16 dziura-fd JobId 17111: VolumeMountpoints are not
processed as onefs = yes.
 > 22-Jan 14:16 dziura-fd JobId 17111:
(S:\)\\?\Volume{260653cf-633a-4504-992e-f82620702a9e}\ ->
\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy31
 > 22-Jan 14:16 dziura-fd JobId 17111:
(C:\)\\?\Volume{7730df77-9bec-432c-a00a-597b4bf1a6f6}\ ->
\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy30
 > [...]
 > Non-fatal FD errors: 0
 > SD Errors: 0
 > FD termination status: OK
 > SD termination status: OK
 >
 > *status client=dziura-fd
 > [...]
 > dziura-fd Version: 24.0.0~pre187.8e12c147a (22 January 2024) VSS
Microsoft Windows 8 Professional (build 9200), 64-bit
 >
 > Thank you!
 >
 > MK
 >
 > On 22.01.2024 09:42, Sebastian Sura wrote:
 >>
 >> We managed to reproduce the issue.  As you already noted, the
 >> cause was the "connection from client to director" option.
 >>
 >> This was fixed by https://github.com/bareos/bareos/pull/1665
<https://github.com/bareos/bareos/pull/1665>
 >> <https://github.com/bareos/bareos/pull/1665
<https://github.com/bareos/bareos/pull/1665>>
 >>
 >> The current next release ( https://download.bareos.org/next/
<https://download.bareos.org/next/>
 >> <https://download.bareos.org/next/
<https://download.bareos.org/next/>> ) already contains the fix.
 >> Let me know if you tried that version and the issue still persists!
 >>
 >> Sincerly
 >>
 >> Sebastian Sura
 >>
 >> Am 18.01.24 um 19:53 schrieb Joshua Myles:
 >>> Interesting. We have a mix of client-initiated and not, and at a
 >>> glance it looks like the only jobs that ever have warnings
 >>> ("ERR=The process cannot access the file because it is being used
 >>> by another process.") are the ones from clients with "Connection
 >>> From Client To Director = yes". Seems like maybe there's a
 >>> different code path used when that's enabled, and it hits a bug.
 >>> Unfortunately we can't switch away from client-initiated for
 >>> these, we've just been living with the warnings.
 >>>
 >>> Josh
 >>>
 >>> On Thursday, January 18, 2024 at 4:10:27 AM UTC-5 Spadajspadaj
wrote:
 >>>
 >>> Yes. It does seem to be the cause.
 >>>
 >>> I switched the client connectivity to the "normal" mode
 >>> (director to client) and the job completed OK and I had no
 >>> problems accessing the registry file.
 >>>
 >>> MK
 >>>
 >>> On 18.01.2024 09:36, 'jo.go...@hosted-power.com' via
 >>> bareos-users wrote:
 >>>> Coindidence or not, we also use Connection From Client to
 >>>> Director=yes
 >>>>
 >>>> Coindidence or not,  Another host which does not have this
 >>>> setting, has 0 errors!
 >>>>
 >>>> On Thursday 18 January 2024 at 09:14:17 UTC+1 Spadajspadaj
 >>>> wrote:
 >>>>
 >>>&

Re: [bareos-users] VSS ERR=The process cannot access the file because it is being used by another process

2024-01-24 Thread Andreas Rogge
ers...@googlegroups.com.
To view this discussion on the web visit

https://groups.google.com/d/msgid/bareos-users/97579337-c80a-4b0d-8a71-997c2633489f%40bareos.com
 
<https://groups.google.com/d/msgid/bareos-users/97579337-c80a-4b0d-8a71-997c2633489f%40bareos.com?utm_medium=email_source=footer>.


--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/b88fd209-86cc-48b9-9004-4f4161b2494en%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/b88fd209-86cc-48b9-9004-4f4161b2494en%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/a8047620-adea-41a8-ba77-b3910148adf5%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] RHEL not supported anymore?

2024-01-23 Thread Andreas Rogge

Hi Jens,

Am 22.01.24 um 17:07 schrieb Jens Köhler:

Hey guys,
I wanted to add a new RHEL 8 client to my Bareos 23 server, but it seems 
there are only the EL repos left for Rocky and others.
Did you drop the free repo access for Redhat installations or am I 
missing something?

The EL repos are for RHEL and all its clones (including CentOS Stream btw.)

I tried the EL8 repo, but it says "nothing provides 
libjansson.so.4(libjansson.so.4)(64bit) needed by 
bareos-filedaemon-23.0.1~pre57.8e89bfe0a-40.el8.x86_64" although the 
package jansson is installed (jansson.x86_64 2.11-3.el8 
@rhel-8-for-x86_64-baseos-rpms).
That shoudn't happen, as we automatically test each of the packages for 
every build before it is published.


I also just tried to install bareos-filedaemon in a fresh RHEL 8 
container it installs just fine. The jansson dependency is satisfied 
with jansson-2.14-1.el8.x86_64 from rhel-8-for-x86_64-baseos-rpms
Even if I try with a RHEL 8.4 and install jansson 2.11-3.el8 the install 
will just upgrade to a recent jansson.


Do you have any "interesting" repo configuration? Is the machine maybe 
pinned to some ancient RHEL version before 8.6 (which was released in 
May 2022)?


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/dc4410cf-9ae2-4b66-a53e-88b291eba3d6%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Fatal error: Version error for database "bareos". Wanted 2230, got 2210

2023-12-18 Thread Andreas Rogge

Hi,

that looks like lib/bareos/scripts/ddl/updates/postgresql.2210_2230.sql 
is missing from packaging on FreeBSD.
We're going to look into that and fix it. However, in the meantime you 
should be able to work around that by fetching the missing file here:

https://raw.githubusercontent.com/bareos/bareos/master/core/src/cats/ddl/updates/postgresql.2210_2230.sql

When put into place (i.e. /usr/local/lib/bareos/scripts/ddl/updates/) 
running update_bareos_tables should succeed.


Hope that helps!

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/fed958c8-9bb9-4bb3-9056-88036381d6ad%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


[bareos-users] Re: Ldpa Plugin problem

2023-12-18 Thread Andreas Rogge

Hi Silvio,

you have to options for a quick hot-fix:
1) just change "plugin_options" to "parts" in BareosFdPluginBaseclass on 
line 52

2) replace your BareosFdPluginBaseclass.py with this one:
https://raw.githubusercontent.com/bareos/bareos/bc86f2be270fc2bf7091100a8ad1017bf59aa403/core/src/plugins/filed/python/pyfiles/BareosFdPluginBaseclass.py

As I said, I hope we'll have packages for the fix shortly.

Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/8ecbaed0-6c26-451e-b085-05d16d16dcb2%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


[bareos-users] Re: Ldpa Plugin problem

2023-12-18 Thread Andreas Rogge

Hi Silvio,

I guess in your plugin-options in the FileSet you have a masked colon 
(:) on one of the options. I probably broke that with the recent PR 
improving plugin configuration.
I'll come up with a solution today with which you will be able to 
hot-fix your installation.

Hopefully we will have fixed packages sometime later this week.

Best Regards,
Andreas

Am 15.12.23 um 11:15 schrieb Silvio Schloeffel:

Hi,


updated the server to 
bareos-filedaemon-python3-plugin-23.0.0~pre1334.639dd301d-16.el8.x86_64 
and since then ldap backup failed with:


storage-serv-fd JobId 10202: Fatal error: bareosfd: Traceback (most 
recent call last):
File "/usr/lib64/bareos/plugins/BareosFdWrapper.py", line 55, in 
parse_plugin_definition

return bareos_fd_plugin_object.parse_plugin_definition(plugindef)
File "/usr/lib64/bareos/plugins/bareos-fd-ldap.py", line 77, in 
parse_plugin_definition

super(BareosFdPluginLDAP, self).parse_plugin_definition(plugindef)
File "/usr/lib64/bareos/plugins/BareosFdPluginBaseclass.py", line 224, 
in parse_plugin_definition

plugindef_options = parse_plugindef_string(plugindef)
File "/usr/lib64/bareos/plugins/BareosFdPluginBaseclass.py", line 52, in 
parse_plugindef_string

val = val[:-1] + ":" + plugin_options.pop(0)
NameError: name 'plugin_options' is not defined


Checked with the last updated version 
bareos-filedaemon-python3-plugin-23.0.0~pre1368.230e60dd6-18.el8.x86_64 
today and the error still exists.


Best

Silvio




--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f321ef37-e946-4342-811c-250e7e017b85%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] baros and ceph rbd (as backend for openstack)

2023-12-13 Thread Andreas Rogge

Am 13.12.23 um 18:37 schrieb emme:

good evening,
  i was reading about rados dropping support for ceph plugin 
(https://www.bareos.com/bareos-22-release/), this means that i cannot do 
anymore backup of ceph rbd based vms (for example openstack)?
As most Ceph applications (like RBD) require special precautions and 
knowledge of what data you're handling, there is no real use-case for 
backing up raw RADOS objects. Thus we decided to remove it.


Essentially you could never sanely back up RBDs with that plugin. Wheter 
or not you're actually able to restore a consistent state is mostly pure 
luck.


To properly back up an RBD, one would need to implement RBD Incremental 
Backup https://docs.ceph.com/en/latest/dev/rbd-diff/ which can probably 
be done in a rather simple python plugin.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d12b1280-6b74-433d-ac6c-6beedd04f7b6%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Purge canceled

2023-12-13 Thread Andreas Rogge

This is fixed now.
See https://bugs.bareos.org/view.php?id=1580

Am 05.12.23 um 10:49 schrieb User1:

Hello, after upgrading to 23 i have encountered with this problem.

Снимок экрана 2023-12-05 114755.png

"Something" cancel the purging and the only way is to purge manually in 
bconsole

I will be gratefull for any helping

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/90786fa8-ed30-4571-80c4-c5fee6b65687n%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/90786fa8-ed30-4571-80c4-c5fee6b65687n%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/6dc86d8b-37a6-4cfe-a203-6704d6e7ea61%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Retention on disk

2023-12-11 Thread Andreas Rogge

Am 07.12.23 um 15:08 schrieb Yariv Hazan:

Last try to configure retention on disk 

Probably not :)



[...]

Please see configuration below:

Pool {
   Name = Every10MinPool
   Pool Type = Backup
   AutoPrune = yes
   Volume Use Duration = 5m
   Label Format = "5Min-"
   Maximum Volumes = 12
#  Use Volume Once = yes
   VolumeRetention = 1h
   Recycle = yes
   Maximum Volume Jobs = 1
   Action On Purge = Truncate
   Maximum Volume Bytes = 3G
}

That looks not to bad.
Did you reapply the pool configuration to the volumes after you last 
changed the pool configuration?
i.e. after "reload" in the director you need to run "update" and you 
probably want "update all volumes from all pools" to re-apply the 
parameters.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/10fd7301-e3c1-4cb3-8d7d-06b28cfd9b0d%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Way to keep < 18.2 clients with Bareos 23 director

2023-12-11 Thread Andreas Rogge

Am 07.12.23 um 13:08 schrieb 'Worhacz, Orest' via bareos-users:

Hi,

I am planning on upgrading Bareos from 22 to 23 release. And I've read
the Breaking changes.

Thank you for that :)


And I have two problematic clients that for now has no way to upgrade
and they run Bareos 16.2.4.
If you would elaborate a bit on that, maybe there is a way to actually 
run a newer version.

But it is not clear to me. If I set TLS Enabled = yes and TLS Required =
no on the Director.
And then TLS Enabled = no and TLS Required = no on those clients.


In the client configuration on the director you simply add "TLS Require 
= no" for that specific client.



Will I be able to connect to them using plain (no encryption) but still
keep TLS for other clients?

Yes. The per-client option will only affect the client it is set in.


Encryption is not a concern here. I am just asking about compatibility
after upgrade.
As you probably already found out, we try not to break filedaemon 
compatibility. However, we guarantee full backwards compatibility only 
with the previous two minor versions (i.e. Bareos 23 director/sd will be 
compatible to Bareos 23, 22 and 21 filedaemons).
Nevertheless, currently all Bareos filedaemon versions ever released 
should at least work for most cases with a Bareos 23 director if you set 
"TLS Require = no" in the client resource on the director.


Hope that helps!

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/2ffbe537-7e73-4cc4-871f-0072f0cc9027%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


[bareos-users] Re: Bareos 23 has arrived! Major-release in the current repository

2023-11-24 Thread Andreas Rogge

Hi Silvio,

from the prompt you're showing you ran the database upgrade script when 
you were in the catalog directory of the director configuration.


Apparently the script least tries to access the cwd which in your case 
is not allowed. This shouldn't be an issue, but we can still look into 
that because it is at least not nice.
To answer your question: the upgrade will do absolutely nothing in the 
bareos dir, you just ran the script while you were in that directory.


Best Regards,
Andreas

Am 24.11.23 um 18:11 schrieb Silvio Schloeffel:

Hello Andreas,

nice to hear, we gave it a try and 


Nov 24 16:59:50 storage-serv.xxx bareos-dir[244550]: bareos-dir: 
dird/check_catalog.cc:68-0 Version error for database "bareos". Wanted 
2230, got 2210
Nov 24 16:59:50 storage-serv.xxx bareos-dir[244550]: bareos-dir ERROR 
TERMINATION



[bareos@storage-serv ~]$ bareos-dbcheck -b
24-Nov 17:03 dbcheck JobId 0: Fatal error: Version error for database 
"bareos". Wanted 2230, got 2210

24-Nov 17:03 dbcheck: Fatal Error at dird/dbcheck.cc:932 because:
Version error for database "bareos". Wanted 2230, got 2210

Follow the db upgrade instructions:

[root@storage-serv catalog]# su postgres -c 
/usr/lib/bareos/scripts/update_bareos_tables


COMMIT
SET
ANALYZE
could not change directory to "/etc/bareos/bareos-dir.d/catalog": Keine 
Berechtigung
could not change directory to "/etc/bareos/bareos-dir.d/catalog": Keine 
Berechtigung

Info: Finished upgrading database to version 2230

It's clear that the postgres user can not write in the configdir of 
another process/user .


What will the upgrade do in the bareos dir?



--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/7371c153-5a36-a405-5344-1ede9bb67590%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


[bareos-users] Bareos 23 has arrived! Major-release in the current repository

2023-11-24 Thread Andreas Rogge

Dear fellow Bareos users,

as I already mentioned last week, the current repository now contains 
Bareos 23.


If you're running off that repository, the next update will be a major 
version upgrade also requiring an upgrade to the catalog database.
If you don't read anything else before applying the upgrade, please at 
least look at the list of breaking changes in the ChangeLog[1].


I hope you all enjoy the new features. We're really looking forward 
getting feedback from you!


Best Regards,
Andreas

[1] https://github.com/bareos/bareos/blob/bareos-23/CHANGELOG.md
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9d06b7c0-1f18-cdae-6721-30502c8a3fa0%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


[bareos-users] heads-up on Bareos 23 / major-release in the current repository

2023-11-16 Thread Andreas Rogge

Dear fellow Bareos users,

as you can see in the changelog[1], there has been quite some work going 
on that we don't want to hold back from you any longer. Thus we're going 
to release Bareos 23 soon.


In that process we're going to update the current repositories[2] to 
contain the latest Bareos 23 pre-release, which will be a major-version 
upgrade. If all goes as planned, that switch will occur by the end of 
next week.


Best Regards,
Andreas

[1] https://github.com/bareos/bareos/blob/master/CHANGELOG.md
[2] https://download.bareos.org/current/
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ff092d55-e24a-f2a9-f463-04b43eb1fbfe%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Build bareos 22.0.1 using rpmbuild on fedora38

2023-10-23 Thread Andreas Rogge

Hi Edgar,

we're building Bareos with rpmbuild all the time.
However, we do have docker images that already contain all the build 
requiements, so the SPEC might be missing a BuildRequires or two.
If you find out what is missing (iirc droplet requires libxml-devel and 
I'm not sure that's listed in BuildRequires) feel free to provide a PR.


Sorry for the tests failing. If you want them to work, you'll have to 
setup a few things (especially a PostgreSQL database and a specific 
alias in /etc/hosts).
I can try to provide some pointers to get that done, but it probably 
won't work if you're building in something like mock.


Best Regards,
Andreas

Am 16.10.23 um 15:03 schrieb Edgar Matzinger:

Hello list,

   has anyone build bareos using rpmbuiid?

What I've done is:

1. download the source rpm from the bareos community repo.
2. install the src.rpm
3. run rpmbuild -ba bareos.spec

After a lot of out put, I see the following:

16% tests passed, 113 tests failed out of 134

I think this is a bit harsh...

The full build log can be found here:

https://www.edgar-matzinger.nl/bareos-rpmbuild-full.log

The build fails with:

RPM build warnings: Duplicate build-ids 
/home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/usr/bin/bconsole and /home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/usr/sbin/bconsole


RPM build errors: File not found: 
/home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/usr/lib64/bareos/backends/libbareossd-droplet*.so File not found: /home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/etc/bareos/bareos-dir.d/storage/S3_Object.conf.example File not found: /home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/etc/bareos/bareos-sd.d/device/S3_ObjectStorage.conf.example Directory not found: /home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/etc/bareos/bareos-sd.d/device/droplet File not found: /home/edgarm/rpmbuild/BUILDROOT/bareos-22.1.1~pre125.bae3d32c0-97.fc38.x86_64/etc/bareos/bareos-sd.d/device/droplet/*.example


Has anyone built bareos using rpmbuild and had better results?
ATM I'm thinking that the spec file is not entirely correct.

Kind regards, Edgar Matzinger.

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/cea70325-8f5a-44ac-9306-d53a001160b8n%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/cea70325-8f5a-44ac-9306-d53a001160b8n%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/e026cd70-0986-9d53-1c9a-5cedf3861a17%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Re: Issues with getting bareos to see the slots in autochanger

2023-10-09 Thread Andreas Rogge

Am 02.10.23 um 12:28 schrieb Philip Dalrymple:
Yes but the default command (tape) had sudo in it so needed to be in the 
sudoers file, I had the same issue at my last company

but that was 5 years ago and I had forgotten.
You don't need sudo. The bareos user should be in the "tape" group and 
thus doesn't need sudo to run mtx.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/352b222d-a14d-d916-ea0a-4c6fef35fd17%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Re: Two auto-changers sharing jobs

2023-10-09 Thread Andreas Rogge

Did you set "Autochanger = yes" in the Storage-Resource of the Director?
When you set this, Bareos will start to honor the InChanger flag and the 
Storage. If you don't set it, Bareos will ignore both.


Best Regards,
Andreas


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/69fb8f93-2d06-10f8-ac47-6659275740cb%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Invalid data when restoring into other client

2023-10-09 Thread Andreas Rogge

Am 20.09.23 um 23:29 schrieb Alex Irmel Oviedo Solis:
Hello all, I have a fresh installed bareos solution, actually the system 
is backuping fine but I get an error restoring my backups into another 
client than the original.


Other client as in other Windows client?
By default the Windows backups are not portable to be restored on a 
Linux machine, sorry.


See here:
https://docs.bareos.org/Configuration/Director.html#config-Dir_Fileset_Include_Options_Portable

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/6a750376-6b9c-2c5e-89a9-4c01ebb15c66%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Re: Gluster storage not in SD Device resources or no matching Media Type

2023-09-18 Thread Andreas Rogge

That Problem is a bit subtle...

You're using the Count parameter in your Device resource in the SD.
This will multiply your device, but the resulting devices will have 
different names (i.e. there is a number added).


For a quick test, comment out the line "Count=X".

To make it work with count you'll need a file autochanger.

Hope that helps!

Best Regards,
Andreas

Am 24.08.23 um 22:33 schrieb Pavel Mlčoch (pavkamlc):


24-Aug-2023 22:11:16.466717 bareos-sd (150): stored/reserve.cc:583-6692 
Try match res=FileStora

ge0004 wanted GlusterDevice
24-Aug-2023 22:11:16.466740 bareos-sd (150): stored/reserve.cc:583-6692 
Try match res=FileStora

ge0005 wanted GlusterDevice
24-Aug-2023 22:11:16.466764 bareos-sd (150): stored/reserve.cc:522-6692 
No usable device found.
24-Aug-2023 22:11:16.466786 bareos-sd (150): stored/reserve.cc:530-6692 
Leave find_suit_dev: no

dev found.
24-Aug-2023 22:11:16.466810 bareos-sd (150): stored/reserve.cc:339-6692 
Fail. !suitable_device

|| !WaitForDevice
24-Aug-2023 22:11:16.467129 bareos-sd (150): stored/reserve.cc:359-6692 
 >dird: 3924 Device "Glu

sterDevice" not in SD Device resources or no matching Media Type.
24-Aug-2023 22:11:16.467608 bareos-sd (100): lib/bsys.cc:669-6692 
write_last_jobs seek to 192
24-Aug-2023 22:11:16.467699 bareos-sd (100): lib/jcr.cc:271-6692 
FreeCommonJcr: 7f312c0153f0


==> /var/lib/bareos/bareos-dir.trace <==
24-Aug-2023 22:11:16.468131 bareos-dir (100): cats/sql_query.cc:131-6692 
called: bool BareosDb:
:SqlQuery(const char*, int) with query INSERT INTO Log (JobId, Time, 
LogText) VALUES (6692,'202
3-08-24 22:11:16','bareos-sd JobId 6692: Fatal error: Device reservation 
failed for JobId=6692:


')
24-Aug-2023 22:11:16.476371 bareos-dir (100): dird/msgchan.cc:255-6692 

usterDevice" not in SD Device resources or no matching Media Type.
24-Aug-2023 22:11:16.476740 bareos-dir (100): cats/sql_query.cc:131-6692 
called: bool BareosDb:
:SqlQuery(const char*, int) with query INSERT INTO Log (JobId, Time, 
LogText) VALUES (6692,'202

3-08-24 22:11:16','bareos-dir JobId 6692: Fatal error:
 Storage daemon didn''t accept Device "GlusterDevice" because:
 3924 Device "GlusterDevice" not in SD Device resources or no 
matching Media Type.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/c07eded0-9c11-8e69-ba6f-026640277d19%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Parallel recording on two tapes

2023-08-09 Thread Andreas Rogge

Hi Ramil,

That's not supported by Bareos. If you really need to have two tapes 
written at once, you'll either need some kind of appliance that does 
that (i.e. maybe some tape vendor offers something like that) or you can 
try to fund development of that feature in Bareos.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/01895e9b-9835-37b9-cbeb-3bf61382d6dc%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


[bareos-users] Meet us a FrOSCon this weekend!

2023-08-04 Thread Andreas Rogge

Hello everyone,

we have a project booth at FrOSCon[1] in St. Augustin, Germany (in the 
Cologne/Bonn region) this weekend.
Feel free to visit us. Besides Bareos there are a lot of other great 
projects and a also lot of interesting lectures.


Best Regards,
Andreas

[1] https://froscon.org/
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/4df5e128-b3c1-4621-4bf0-e04eb6d1ef7f%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Media expiration info missing in UI

2023-08-04 Thread Andreas Rogge

Am 03.08.23 um 20:15 schrieb Oleg Volkov:
Bareos director decides to reuse the media by some reason, I guessing 
that by expiration status.

If director knows about this status, why can't I see this info ?
It doesn't "know" that status. It calculates it on a case-by-case basis 
during auto-recycling.
You're right, that information should be visible somehow. However, 
currently it is not exposed via any api.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/8f825a4e-4722-48c8-3f41-0bb9e77755c6%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Re: Restore from tape failed: not enough memory (Ultrium LTO5)

2023-08-03 Thread Andreas Rogge

Hi Konrad,

I would remove the "Minimum Block Size" setting, it usually doesn't help 
unless you require fixed block sizes (which you don't on an LTO drive).


Your current setting for Maximum Block Size limits the buffer size to 
524288 bytes. Apparently your backup was written with a larger block 
size, so reading the block fails.
While there is an automatic workaround being implemented in PR #1496 
right now it will probably help to simply increase Maximum Block Size.

Maybe start with "Maximum Block Size = 1048576".

Also, please note that in Bareos 23 the default block size will change 
in a backwards-compatible manner so that there is no need to configure 
block sizes anymore.


Best Regards,
Andreas

Am 03.08.23 um 14:58 schrieb 'Konrad' via bareos-users:

Dear Andreas,

this is the tape part of my config:


/--/
SD /etc/bareos/bareos-sd.d/device/FileStorage.conf

/Device {/
/  Name = Ultrium3000/
/  Media Type = Tape/
/  Archive Device = /dev/nst0/
/  LabelMedia = no;                   # lets Bareos label unlabeled media/
/  Random Access = no;/
/  AutomaticMount = yes;               # when device opened, read it/
/  RemovableMedia = yes;/
/  AlwaysOpen = yes;/
/  Description = "Tape device. A connecting Director must have the same 
Name and MediaType."/

/  Maximum File Size = 50 G /
/  Maximum Spool Size = 500 G/
/  Minimum Block Size = 524288/
/  Maximum Block Size = 524288/
/  Spool Directory = /media/spool/
/}/
/
/
Director:  /etc/bareos/bareos-dir.d/storage/File.conf

/Storage {
Name = Tape
Address = localhost
Password = "i won't tell"
Device = Ultrium 3000
Media Type = Tape
Autochanger = no
Maximum Concurrent Jobs =1
}/
/--/
BTW: I am using Bareos 22, all services are located in a Proxmox 
VM, Ubuntu 22.04.2 LTS, PCIE passthrough of SAS card


I added the last five lines of the device config to deal with 
performance issues according 
to https://www.bareos.com/whitepapers/optimizing-the-tape-speed.pdf

/media/spool is a ramdisk, during that backup mounted with 20GB.

Kind Regards

Konrad

On Saturday, July 29, 2023 at 4:48:57 PM UTC+2 Konrad wrote:

Hi,

i recently moved from disc to tape backup with bareos, so my
experiences regarding restore are limited to testwise restoring some
files and directories.
Moving to another raid, I am trying to restore the whole backup to
the new set of discs. Some folders restore ok, but when I want to
restore the whole set, I encounter the following error:
"bareos-sd JobId 18: Error: stored/block.cc:981 Read error on fd=5
at file:blk 0:1 on device "Ultrium3000" (/dev/nst0). ERR=Nicht
genügend Hauptspeicher verfügbar."

I tried to research and think this is because of mismatching block
size, but the block size is fixed in bareos. I use the same install
to restore, that was used for backup.

FileStorage.conf:
/Minimum Block Size = 524288
   Maximum Block Size = 524288/

I would appreciate to get some hints on how to get on. I am loosing
faith in my backup :-(

Konrad

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ee777a79-9b58-498c-874d-33eb53f7bbb2n%40googlegroups.com <https://groups.google.com/d/msgid/bareos-users/ee777a79-9b58-498c-874d-33eb53f7bbb2n%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9e1f5020-f447-f417-5f71-dcf43db8086e%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Restore from tape failed: not enough memory (Ultrium LTO5)

2023-08-03 Thread Andreas Rogge

Am 29.07.23 um 16:48 schrieb 'Konrad' via bareos-users:
"bareos-sd JobId 18: Error: stored/block.cc:981 Read error on fd=5 at 
file:blk 0:1 on device "Ultrium3000" (/dev/nst0). ERR=Nicht genügend 
Hauptspeicher verfügbar."


I tried to research and think this is because of mismatching block size, 
but the block size is fixed in bareos. I use the same install to 
restore, that was used for backup.


FileStorage.conf:
/Minimum Block Size = 524288
   Maximum Block Size = 524288/

I would appreciate to get some hints on how to get on. I am loosing 
faith in my backup :-(


As you already found out, you're having a problem with the blocksize. 
Would you share the complete configuration for the tape device?


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/6b6fb6ed-7dd6-e3f8-101b-447e2357ca8f%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Bareos LDAP-Authetification on Bareos WebUI & bconsole

2023-08-03 Thread Andreas Rogge

Am 29.07.23 um 12:15 schrieb stefan@harnet.de:

root@dsme01:~# cat /etc/pam.d/bareos
auth       required     pam_unix.so
## auth       required     pam_sss.so
account    required     pam_unix.so
account    required     pam_permit.so
...


pam_unix.so will usually require read access to /etc/shadow, you 
mentioned that you added bareos to the "root" group. However, on 
Fedora/RHEL this doesn't seem to do a thing and on Debian the required 
group is called "shadow" instead.


Long story short: make sure the bareos director can read /etc/shadow or 
- if you want LDAP - don't try setting up pam_unix first, because it 
usually requires root privileges in the process calling PAM.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/233f0afe-1687-5c64-4fc4-c62ade9f3977%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Media expiration info missing in UI

2023-08-03 Thread Andreas Rogge

Am 01.08.23 um 09:16 schrieb Oleg Volkov:

How to get an Expiration info about volumes ?


Short answer: there's no easy way to get that information.

Long answer: That is a good question and actually the point why we 
removed that column.
A volume expires if all jobs on it have expired. This is the case if all 
jobs on the volume have been pruned/purged/deleted (either manually or 
by some retention).
Now the interesting part is how volume retention works: a job will 
expire if "end date + volume retention > now". For copied or migrated 
jobs this can be a lot earlier than "last written + volume retention" 
(which is what the WebUI used to display).
This means that without looking at the jobs stored on a volume, you 
cannot reliably determine when it will expire. We removed the column to 
not display bogus information anymore.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d40ad597-006d-6a80-1b63-63a34c450223%40bareos.com.


OpenPGP_0x00314758866BD59E.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Old Package Centos 6.9

2023-06-07 Thread Andreas Rogge

Hi Allan,

Am 07.06.23 um 01:46 schrieb Allan Patrick:
> Is it possible to inform me of a repository or send a version compatible
> with the legacy version:
>
>   Centos 6.9 x64.

You will need the repository at
https://download.bareos.com/bareos/release/19.2/CentOS_6/
because 19.2 is the newest version that was still built for CentOS 6.

I'm pretty sure we can provide access to that repository at least for a 
limited time for free.
If you ask nicely at sa...@bareos.com, then I'm pretty sure they can 
work something out (and no, you don't have to buy anything).


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d60b78e2-9e17-209c-be9c-a656c1ce36f9%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] SAS tape library multi-host best practices

2023-06-05 Thread Andreas Rogge

Am 01.06.23 um 13:19 schrieb Kai Zimmer:

[...]

Do you think such a configuration is possible? Will bareos support it? 
Or would you prefer a different configuration?
Definitely possible and will work with Bareos. You'll end up with two 
storage daemons that can each access basically half of the library (i.e. 
one tape drive and a bunch of slots).


If you have a Bareos support contract, then such a setup is also supported.
Whether or not this is the optimal implementation depends on your 
specific use-case. If you don't need the strict separation, a single 
large tape library may provide additional benefits (like having two tape 
drives and allowing a copy, for example).


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/0ccd7f9d-a62f-2880-69de-72f1e367488e%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] alternativa repository - old release

2023-05-31 Thread Andreas Rogge

Am 31.05.23 um 10:15 schrieb Willem Basson:
Indeed, we had 18 months. But we didn't know that we had 18 months, 
because old versions were historically still available, so readying 
ourselves for Bareos upgrades hasn't featured as the most important 
thing to do yet.  We made a temporary plan by pulling old packages out 
of our backups for the time being.

I'm glad you found a solution that works for you right now.
We also realize that a lot of people are running old version of Bareos 
(a lot of people still seem to run 17.2). What we're trying to do is to 
"push" the community to switch to the latest version, so we get more 
feedback on that.

Breaking anyone's Bareos setup was definitely not one of our goals!

What would have been great, is for at least a short period of time, 
there was also a 'previous' repo at downloads.bareos.org. Even a month 
or 3 would suffice. Right now, there is now way to cleanly and 
confidently move servers from one version to another. But I totally 
understand if your reasoning is that we need to pay if we need that 
functionality, since you don't recommend using the community version in 
production.
We announced that change. On December 19th 2022 when the new release 
policy was announced, we clearly stated that outdated and discontinued 
versions of Bareos will be removed from the download server.
That new release policy was also mentioned in the press release for 
Bareos 22.
While the policy change basically stated that old packages would go away 
immediately, we left the packages there for more than four months so 
people had some time to adapt and migrate.


I somehow feel that we're bad at communicating stuff like that, because 
a lot of people seem to not have noticed before the packages actually 
went away.
If anybody has an idea how we can improve on that, please go ahead and 
tell us!



Maybe I should reach out to sales about bulk licensing?
That would be nice. I spoke to sales yesterday and explained your 
situation. If you reach out to them, I'm pretty sure they can come up 
with some kind of solution that works for you.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/cb650cb9-d866-8ba0-8c1e-c9f72e3ad227%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] alternativa repository - old release

2023-05-30 Thread Andreas Rogge

Am 29.05.23 um 15:08 schrieb Willem Basson:
We have some custom integrations between our custom code and the 
Director, and it is not yet compatible with versions newer than 20.


Since Bareos 21.0.0 was released in December 2021 (almost 18 months 
ago), you had the chance to adapt your integrations, but didn't.
How long do you think you'll need to upgrade? Maybe I can convince sales 
to provide a time-limited (but otherwise free) access to the 
subscription repository for you.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ab7d82d0-48e3-2565-f1af-74e8811d5811%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Re: Community packages repository for version 22

2023-05-30 Thread Andreas Rogge

Am 11.05.23 um 23:28 schrieb Douglas Hammond:

This does have the caveat though "could be upgraded automatically
without my knowledge", which is a very big concern especially for
major versions.


You're still using your package manager to install the update, so if it 
happens automatically then it was you who automated it and if it happens 
without your knowledge then it was you who chose to ignore it.


Having said that, I totally get your concern for major versions. These 
may come with some more implications than a patch- or feature-release.
However, if you as a community can agree on a realistic time-frame you 
would need to prepare for the arrival of a new major release, then I 
don't see why we wouldn't notify you in advance.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/2ab2ed00-2f08-0bdd-5ab3-c86adf3188bd%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


[bareos-users] Re: MySQL 8.033 backup with xtrabackup

2023-05-26 Thread Andreas Rogge

Am 24.05.23 um 15:36 schrieb Silvio Schloeffel:


-> 8.033 is "to new"

My question is, where can I add the

--no-server-version-check

option because with this option the backup is running.
There's a parameter to the plugin called "extradumpoptions". You should 
be able to pass the parameter there.
However, Xtrabackup 8.0.33 was released yesterday, so maybe it is better 
to just upgrade to that.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ced34508-5c37-e38e-1245-f751454de0df%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] bconsole kills bareos-dir

2023-05-25 Thread Andreas Rogge

Am 24.05.23 um 20:28 schrieb Denis Yesakov:

Removing password from bconsole.conf
Run bconsole

Director daemon dies with:

[root@test-bareos-1 ~]# systemctl status bareos-dir
● bareos-dir.service - Bareos Director Daemon service
      Loaded: loaded (/usr/lib/systemd/system/bareos-dir.service; 
enabled; preset: disabled)

      Active: active (running) since Wed 2023-05-24 18:11:43 UTC; 12min ago
        Docs: man:bareos-dir(8)
    Main PID: 57107 (bareos-dir)
       Tasks: 3 (limit: 24159)
      Memory: 2.0M
         CPU: 254ms
      CGroup: /system.slice/bareos-dir.service
              └─57107 /usr/sbin/bareos-dir -f

May 24 18:11:43 test-bareos-1 systemd[1]: Started Bareos Director Daemon 
service.
May 24 18:12:25 test-bareos-1 bareos-dir[57107]: Connect failure: 
ERR=error:0AFD:SSL routines::binder does not verify
May 24 18:12:25 test-bareos-1 bareos-dir[57107]: lib/bnet.cc:122 TLS 
Negotiation failed.


Very strange bahaviour. Is it correct ? I think to rewrite 
bareos-dir.service to allow automatic restart in this case.


systemd is reporting it as "active (running)", so I don't understand why 
you think the director dies?

Also, the director is already set up to restart automatically.

The openssl error messages for a wrong PSK is not very helpful, but 
that's a different story.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/59556276-f657-6ed9-ddd6-e1af022ca5fd%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] alternativa repository - old release

2023-05-23 Thread Andreas Rogge

Am 21.05.23 um 03:51 schrieb Allan Patrick:
Does anyone know of a repository that has copies of old versions of 
bareos? I understand that there must be a license, it would be for old 
versions only.


If you have a requirement why you need a specific package in a specific 
version and it is not "I don't want to upgrade", then I'm pretty sure we 
can help you with that.


Also, we're really interested to learn why people run ancient versions 
of Bareos.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  http://www.bareos.com

  Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
  Komplementär: Bareos Verwaltungs-GmbH
  Geschäftsführer: Stephan Dühr, Jörg Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/0ea35fc2-7f4e-ff02-4945-0b21657b4647%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] New user. Can't get webui to work.

2023-03-16 Thread Andreas Rogge
It seems like you need to manually enable php-fpm in Debian/Ubuntu after 
you installed it.
When I tested with Ubuntu 22.04, running "a2enconf php8.1-fpm" followed 
by "systemctl reload apache2" solved the issue.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/14c21e28-b5a5-3848-7c42-56e4ae57adfb%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


[bareos-users] Re: TLS Fehler with BOS22:

2023-03-02 Thread Andreas Rogge
Hi Jörg,

Jörg Bernau schrieb am Freitag, 24. Februar 2023 um 19:25:00 UTC+1:

It took me almost one day to figure out, that it was a DNS cache problem. 
After switching to IPs, everything is fine.

A hint, with quoting the error test in 
https://docs.bareos.org/TasksAndConcepts/TransportEncryption.html, would be 
an excellent point to avoid others to run into the same issue. Please point 
out, that there is a DNS cache on mostly all systems. On Linux: sudo 
systemd-resolve --flush-caches / sudo resolvectl flush-caches:

I don't think anyone from the team will take care of that. However, feel 
free to open a PR for that documentation change.


By the way: It would be really helpfully, when there would be an error 
message besides 
"*bareos-dir: lib/bnet.cc:122 TLS Negotiation failed.*”! 
Better would be: 
*" bareos-dir: lib/bnet.cc:122 TLS Negotiation from director 
god.example.net  to storage eden.example.net 
 failed.*"

That's a good idea. I'm not sure the data you'd want to display here is 
actually present in the location the message is created. Also, feel free to 
propose something in a PR. 
 

But maybe the code from community edition to subscription differs...

That's definietly not the case. The subscription binaries are built from 
the same source code.

Best Regards,
Andreas

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/74a5ad60-acbc-41d4-8118-19d2bba9bb53n%40googlegroups.com.


Re: [bareos-users] Status of statistic collection

2023-02-15 Thread Andreas Rogge

Hi,

Am 15.02.23 um 14:46 schrieb 'Martin Schmid' via bareos-users:
> I've just upgraded bareos from v20 to v22 and I'm wondering why all(?)
> configuration affecting statistics are marked deprecated.
> What has happened and is the statistics collection dead by now?

there are a lot of issues with the current implementation. Also we're 
not really happy with the way statistics are collected and stored.


In the end it was marked deprecated so we can replace it with something 
better. However, that will probably not make it into 23.


Basically: you can keep your current statistics collection if it works 
for you, but please be aware and prepared that one of the next major 
versions will ship with a different approach.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/23831e37-57e0-23ae-df10-68ddb9ffc201%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Bareos Version 22, LDAP Plugin

2023-01-26 Thread Andreas Rogge

Hi Stefan,
Hi Silvio,

the problem with Python 2 is exactly we we deprecated the plugin. We 
will remove the current plugin from Bareos 23.


Until then you can - of course - continue using the python 2 plugin.

With the python libraries available for LDAP it is sadly not really 
possible to write a plugin that works with python2 and python3. Rest 
assured that a Python 3 port of the plugin is on its way.


Best Regards,
Andreas


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f54585aa-12b4-5058-1197-390f835938a7%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Bareos Version 22, LDAP Plugin

2023-01-10 Thread Andreas Rogge

Am 23.12.22 um 23:37 schrieb stefan@harnet.de:

is there no longer a python ldap plugin for version 22?


How did you get that impression?

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/83e14b29-b1eb-4f04-9c4e-5d6fa576dd35%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Restore error "block checksum mismatch"

2022-12-19 Thread Andreas Rogge

Hi Benedict,

looking at your configuration there are two parameters where I don't 
unterstand why you set them.
Do you have any special requirement for "Two EOF"? Usually that 
parameter is not needed.
Why did you set Minimum Block size to 64k? The default is 63k and 
usually there is no need to configure this at all.


If it doesn't break with files and only happens after you have written 
some amount of data to the tape, I would suggest that we first make sure 
your tape drive works correctly.
Especially "it works until i back up more than 900 MiB" sounds like your 
tape drive might have an issue.


Did you check for tapealert flags? If I'm not mistaken on FreeBSD this 
should be doable with "smartctl -H". Maybe your drive reported problems 
that you didn't realize yet.
Did you look at the kernel log if there is anything related to your 
tape-drive?


When you tested with tar, did you make sure the restored data was 
correct? The checksums in tar only protect the headers, not the data. So 
if there is a bit-flip in the data, tar won't notice that, but just 
restore bogus data.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d69c1c9d-732d-6845-dbd9-3cb4cce5af8a%40bareos.com.


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Restore error "block checksum mismatch"

2022-12-15 Thread Andreas Rogge

Hi Benedict,

Am 13.12.22 um 16:34 schrieb Benedict Ecker (Bene):
However when I am starting a restore job, I encounter problems. The 
operation aborts with the error message "Volume data error! Block 
checksum mismatch!".


Thats bad. And - unless you wrote your tapes with a version affected by 
Bug #1180 - shouldn't happen. Even if you had been hit that Bug, it 
should still work if you read and write with the same version (it would 
miscalculate the checksum on write and on read, so it would still match).
We currently don't do automated testing with FreeBSD on a real tape 
drive, so there might still be some kind of stange bug you've 
encountered here.


However, the block checksum calculation happens before the data is 
handed off to the device-specific storage backend. So if there is some 
kind of problem, you should also see the same behaviour when backing up 
to files.

Did you already try that?

In any case, I would love to take a look at the device resource you 
configured in the SD.


If you can reproduce the problem with files (which I doubt, as this is 
automatically tested during CI), could you provide a sample volume file 
(with just two or three files backed up?


If you cannot reproduce the problem with files and it only happens with 
tape, would you run a small job (again, just two or three files) to a 
fresh or recycled tape, dump the tape-files and send them to me?


To dump the tape files you can just mt rewind the tape and then

dd if=/dev/your-drive of=file-0 bs=
dd if=/dev/your-drive of=file-1 bs=
...
dd if=/dev/your-drive of=file-N bs=

until there is no more files to read (probably there will be just two - 
the label block and the backup session)


I really hope we can sort this one out.

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/59a22196-e5ea-3029-46e8-3443d3bc8857%40bareos.com.


Re: [bareos-users] mssqlvdi copy only backup

2022-10-25 Thread Andreas Rogge

Am 11.10.22 um 16:21 schrieb Maksim Pratasevich:
Can someone share mssqlvdi dll from this built from this  
branch https://github.com/bareos/bareos/tree/dev/pstorz/master/mssql-copy-only 


The packages are here, but you'll need to extract the file yourself:

https://download.bareos.org/bareos/experimental/CD/pstorz-master-mssql-copy-only/windows/


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9ee707ab-51d5-6053-5c9c-0e574e4147af%40bareos.com.


Re: [bareos-users] Backup Speed with Encryption

2022-09-19 Thread Andreas Rogge

Hi,

I understand I'm somewhat late to the party, but when I hear performance 
issue in combination with Windows and small files I have to ask: do you 
have a virus scanner installed on that machine? Does it check every file 
when the FD looks at them?


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/5d1ad749-1bd6-1706-a1ae-fe9b03e5b44a%40bareos.com.


Re: [bareos-users] Newest client to support windows 2000

2022-09-19 Thread Andreas Rogge

Hi Brock,

Am 16.09.22 um 21:43 schrieb Brock Palen:

I have a need to backup windows 2000 system (used to control a dos based 
printing system)
You should have a serious conversation with your customer. If anything 
on that machine breaks, you'll be completely out of luck.
Do you have any tested procedure to reinstall the Windows 2000 with 
required service-packs, hotfixes and drivers? Any spare parts for that 
system? If it is critical enough for a backup, it is probably critical 
enough to be able to fix it if it breaks.


Just my 0.02 $ tough...


I tried down to version 12 (olest on the site) and got errors.
Bareos 12 is from sometime in 2012. Windows 2000 extended support ended 
in July 2010, so there's a two year gap between the EoL for Windows 2000 
and the advent of Bareos itself.
Your best chance is probably the XP-Build of 14.2. If anything works on 
Windows 2000, then it is this. Also, it should still speak with a recent 
Bareos Director - completely unencrypted though.


http://download.bareos.org/bareos/release/14.2/windows/XP_2003/
https://download.bareos.com/bareos/release/14.2/windows/XP_2003/

Using the normal Windows FD (i.e. the "postvista" build) will not work 
correctly on systems prior to Windows Vista, as there were some major 
changes in the system's backup APIs.


Hope that helps!

Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d2700bd4-2d01-73c8-e5b4-dba7ce8d0c6e%40bareos.com.


Re: [bareos-users] Always incremental looking in wrong device

2022-04-08 Thread Andreas Rogge

Hi Jan,

Am 08.04.22 um 13:10 schrieb Jan Hebler:

Maybe it is worth to mention this in https://docs.bareos.org/
TasksAndConcepts/VolumeManagement.html#section-multiplestoragedevices
As there is only an example for multiple devices using the same directory
which uses (in that case correct) the same media Type.


you're right, and I would be really happy if it was not so easy to get 
it wrong.
However, you're referring to a subsection of the "Concurrent Disk Jobs" 
chapter. The third paragraph in that chapter is completely devoted to 
the very problem you were running into.


If you have any idea on how and where to document this so people don't 
run into that problem all the time, we're really open to suggestions.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/3e6870a4-e107-36f4-7f9e-233ec4a5df5b%40bareos.com.


Re: [bareos-users] Always incremental looking in wrong device

2022-04-06 Thread Andreas Rogge

Hi Jan,

You have two different Disk storages with the same Media Type.
This will not work, as is described in the docs[1]:

"If you want to tie Bareos to using a single Storage daemon or drive, 
you must specify a unique Media Type for that drive. This is an 
important point that should be carefully understood. Note, this applies 
equally to Disk Volumes. If you define more than one disk Device 
resource in your Storage daemon’s conf file, the Volumes on those two 
devices are in fact incompatible because one can not be mounted on the 
other device since they are found in different directories. For this 
reason, you probably should use two different Media Types for your two 
disk Devices (even though you might think of them as both being File 
types)."


Hope that helps!

Best Regards,
Andreas

[1] 
https://docs.bareos.org/Configuration/Director.html#config-Dir_Storage_MediaType

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/097939a1-8249-a11e-af40-41934bd50e0c%40bareos.com.


Re: [bareos-users] Problems with bareos-fd on Windows 11

2022-03-15 Thread Andreas Rogge

Hi Ruth,

Am 14.03.22 um 00:13 schrieb Ruth Ivimey-Cook:
The only error-like message related to being unable to open the state 
file. However the bconsole status command fails to connect and 
eventually times out.


Does it fail to connect? The debug-log of the FD looks like connect and 
auth worked. Could you provide the complete output of the status command?


Do you by any chance have MTU issues?
I remember another really strange issue: I remember a customer having 
MTU set to 9000 on the FD, but one of the Switches in between didn't 
support it (or it wasn't configured to do so). As a result all small 
packages (establish connection, authenticate, etc.) that fit into the 
default 1500 Bytes were fine, but everything larger (like an FD's status 
response) was lost.


Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/84d7fee5-e2dc-25a5-673c-643afbc2af48%40bareos.com.


Re: [bareos-users] DB Issue Upgrading to Bareos 21

2022-02-23 Thread Andreas Rogge

Am 22.02.22 um 19:40 schrieb Jim Oltman:
I asked my question incorrectly.  Sorry about that!  Would I be correct 
in saying I can only upgrade the schema on the Bareos 21 install?  I 
would have to jump up to Barcus' Bareos 21 version then run the 
upgrade_database_tables then the grant_permissions scripts?  If that's 
the case, then that's the root of my problem.  Anytime I try to upgrade 
to director 21, the director container keeps restarting and I can never 
get a /bin/bash prompt in the container.  Or should I download the 
scripts from the Bareos 21 repo and get them on the 20 container and run 
them, then upgrade to 21 after the script is done?  Thanks!


Usually containers have some way  to do the upgrade procedure. I guess 
Barcus probably provides an option for that. However, I haven't tried 
running Bareos with Barcus yet, so I don't know how it is supposed to work.


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/7cdd9074-39c7-0f9a-ad47-7ecb92b11f72%40bareos.com.


Re: [bareos-users] DB Issue Upgrading to Bareos 21

2022-02-22 Thread Andreas Rogge

Am 22.02.22 um 16:18 schrieb Jim Oltman:
It does, hence the reason for my question.  Will Bareos 20 flip out once 
I upgrade the schema?  I will certainly stop the director service before 
the upgrade. I'm assuming it can't start up again after the upgrade?  
I'll have to migrate straight to 21?  Thanks!


Once you upgrade your catalog to the new DB schema version, you cannot 
use it with an older director version.
You can keep a backup of the older version and - if you're fluent in SQL 
- you could manually undo the schema changes (they're rather trivial in 
this case) and run the older version again.


Keep in mind that you'll need to upgrade the SD together with the 
Director. The Filedaemon can be older: In Bareos 21 we would support 
down to Bareos 19.2 Filedaemon. However, the Filedaemon from Bareos 16.2 
is known to still work with Bareos 21 Director/SD.


Hope that helps!

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d12556a8-ee86-020a-5436-1be80814868f%40bareos.com.


Re: [bareos-users] DB Issue Upgrading to Bareos 21

2022-02-22 Thread Andreas Rogge

Hi Jim,

you need to run the schema-upgrade-scripts on your database.
See 
https://docs.bareos.org/IntroductionAndTutorial/UpdatingBareos.html#updating-the-database-scheme


I don't know if Barcus' Director-Image has a switch to do that 
automatically...


Best Regards,
Andreas

Am 20.02.22 um 21:57 schrieb Jim Oltman:
I'm running Barcus Bareos DIR/FD/WebUI docker containers.  It took me a 
bit, but I think I was able to migrate to PostgreSQL from my MariaDB.  
I'm currently running the 20-ubuntu tag from Barcus, which appears to be 
PostgreSQL only.  When I move to the "latest" tag (Bareos 21 with 
Ubuntu) the director container never starts up and is constantly 
restarting (I have restart set to always in the docker-compose file).  
These are the errors I see in the docker log for the Director container:


Waiting for postgresql...
bareos-db:5432 - accepting connections
...postgresql is alive
bareos-dir: dird/check_catalog.cc:64-0 Could not open Catalog 
"MyCatalog", database "bareos".
bareos-dir: dird/check_catalog.cc:71-0 Version error for database 
"bareos". Wanted 2210, got 2192

bareos-dir ERROR TERMINATION
Please correct the configuration in /etc/bareos/bareos-dir.d/*/*.conf

For reference, bareos-db is another docker container running postgres 
9.3 from their official docker hub.  The old MariaDB container was named 
"mariadb".  In the docker-compose file, I have the DB_UDPATE=TRUE.  I'm 
not seeing anything in the 21 release notes mentioning a DB schema update.


This is the MyCatalog.conf file:

Catalog {
   Name = MyCatalog
   #dbdriver = "sqlite3"
   DB Name = bareos
   DB Address = "bareos-db"
   DB Port = "5432"
   DB User = postgres
   DB Password = "PASSWORD"
}

Here is the bareos-dir.conf:

Director {                            # define myself
   Name = bareos-dir
   QueryFile = "/usr/lib/bareos/scripts/query.sql"
   Maximum Concurrent Jobs = 10
   Password = "PASSWORD"         # Console password
   Messages = Daemon
   Auditing = yes
}

Any assistance would be appreciated.  Thanks.

Jim

--
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+unsubscr...@googlegroups.com 
<mailto:bareos-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d16c2315-9c65-4533-abc8-0787468cda90n%40googlegroups.com 
<https://groups.google.com/d/msgid/bareos-users/d16c2315-9c65-4533-abc8-0787468cda90n%40googlegroups.com?utm_medium=email_source=footer>.


--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/4bc04af5-d715-26e0-1292-3191b6fe83bc%40bareos.com.


Re: [bareos-users] VSS ERR=The process cannot access the file because it is being used by another process

2022-02-10 Thread Andreas Rogge

Am 07.02.22 um 08:20 schrieb Vorname Nachname:

Any suggestions?


Check if the integrated Windows Server Backup works or not.
Are you backing up only these three files, or are the other files where 
the backup works?


Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/1b91bd46-9ace-d1c8-e872-1b2f93620ecd%40bareos.com.


Re: [bareos-users] Unable to load any shared library for libbareoscats-mysql.so since update v20 to v21

2022-01-23 Thread Andreas Rogge

Hi,

Am 20.01.22 um 16:12 schrieb pop.p...@gmail.com:

Hi!
I have a problem with bareos director since updating from version 20 to 
version 21.

I'm on debian 11 and it worked fine before.

When I restart bareos director, I end up with the error "Unable to load 
any shared library for libbareoscats-mysql.so", without further details.


could you describe the exact way you did the upgrade (including the 
commands you ran)?
Your package manager should have stopped you, because it could not 
upgrade the bareos-database-mysql package. At least that is what I saw 
when I tested it before we released the packages.


If you could elaborate on how exactly you did the upgrade, we might be 
able to improve the situation so nobody else falls into that pit.


Thank you!

Best Regards,
Andreas

--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9cc57b07-7b44-9b5e-3869-2ca4d1a1dbde%40bareos.com.


Re: [bareos-users] Bareos 21 and mariadb plugin and Accurate = yes in job definition.

2022-01-07 Thread Andreas Rogge

Hi Jürgen,

Am 24.12.21 um 09:58 schrieb 'Jürgen Echter' via bareos-users:
> I just wanted to try out the new mariadb-plugin, i never used any plugin
> yet, and i got the following message in my incremental job:
> python-fd-mod: start_backup_job: Accurate backup not allowed please
> disable in Job
>
> As i'm using always incremental scheme is this not going together with
> the mariabackup plugin?

the problem with AI and plugins (especially the database plugins) is 
that we cannot produce a suitable new full backup on the server by 
merging an older full + incrementals.


It is probably easiest to imagine that the full backup takes a snapshot 
of the database and the incrementals only pick up the change-sets to 
that snapshot.


So when we do a full backup on the client (i.e. no AI) we will get a new 
snapshot.
However, doing a virtual full backup without the client (i.e. what 
Consolidation does) you will get a new full backup that contains the 
original snapshot and lots and lots of change-sets to that snapshot.


This would leave you with full backups that keep growing and - what is 
even worse - with an awful performance on restore, as you'll restore 
some ancient snapshot and the apply lots and lots of change-sets to that.


Hope that sheds some light on why this doesn't work.

Best Regards,
Andreas
--
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/36bdc342-585b-b1bb-c1c7-977b54bc4ddd%40bareos.com.


Re: [bareos-users] backup from gluster fs

2021-06-10 Thread Andreas Rogge
Am 21.05.21 um 08:56 schrieb 'Frank Cherry' via bareos-users:
> Is it Modify or Change ? I think, it is change because glusterfs
> permanently updates the meta data of the files and so it's impossible to
> back up ONLY modified files.
> 
> Is there a strategy for backing up GlusterFS volumes (FUSE mount) or can
> I change the criteria of the FD to backup only modified files?

If you need efficient incremental backups for a glusterfs volume, there
is a glusterfs plugin for the fd that you may want to take a look at:
https://docs.bareos.org/TasksAndConcepts/Plugins.html#glusterfs-plugin

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/8fb3e447-0aea-e7e1-ac2c-f112c7d7c37d%40bareos.com.


Re: [bareos-users] Re: Backing up to multiple storage daemons

2021-04-30 Thread Andreas Rogge
Am 28.04.21 um 23:33 schrieb Florian Panzer - PLUSTECH GmbH:
> Yes, that is what I understood from the docs.
> This looks like a "not-yet-implemented" function, or maybe even a bug
> that hasn't been fixed.
The documentation states:
"""Be aware that you theoretically can give a list of storages here but
only the first item from the list is actually used for backup and
restore jobs."""

While I agree that there's room for improvement, there are lots of
issues to address when backing up to multiple storages - I really don't
want to go into more detail here. In the end you'll be better off with
separate pools per storage.

> IMHO bareos should
> * either not load such configuration, instead of happily taking a list
> of storages and silently only ever using the first
> * or use any of the storage (e.g. fallback if the first storage is full).
A storage is never "full" from Bareos' point-of-view. So this is
currently more or less impossible to implement.
However, if you can come up with a working solution, feel free to open a
pull request.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/70eb191c-9706-d6b8-f091-1846285f5bc7%40bareos.com.


Re: [bareos-users] Autchanger Script fails

2021-02-22 Thread Andreas Rogge
Hi Tilman,

are you using Bareos 20 and have data-spooling enabled on the tape drive?
You may have hit a bug that will be fixed in the upcoming 20.0.1, then.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f85a347e-bef5-c23d-9038-cb3d0ebd5d10%40bareos.com.


Re: [bareos-users] bareos tray monitor not working on Server 2008

2021-01-15 Thread Andreas Rogge
Hi Sascha,

Support for Windows Server 2008 ended in January 2020. I don't think
we'll fix issues that only occur on EOL systems.
You'll have to run an older version of Bareos there.

If you can reproduce the issue on a supported version of Windows (i.e.
at least Windows Server 2012), we will consider this a bug.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/f494db95-bdfd-3e61-e969-1c38c4c66ccd%40bareos.com.


OpenPGP_0xC9343A2D7259BD60.asc
Description: application/pgp-keys


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Bareos 20

2021-01-15 Thread Andreas Rogge
Hi Robert,

as you might have noticed, we're looking into the issue. However, we're
not (yet) able to reproduce it in our testing environment.
Would you mind reproducing it again setting the debuglevel to 200 so we
have more trace information? Right now we have a rough idea in what
state the SD is, but no clue how it ended up in that state.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/006ae16f-9101-dc89-57cf-39805f2cea43%40bareos.com.


OpenPGP_0xC9343A2D7259BD60.asc
Description: application/pgp-keys


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] Bareos 20

2021-01-14 Thread Andreas Rogge
Hi Folks,

could one of you check if the SD kept the device open when this error
occurs?

i.e. take a look at /proc//fd while you're seeing the "device
or resource busy" messages.
Maybe the SD tries to open a the device while it still has it open
(which would be a bug, of course).

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/68c1527f-bbb4-c308-df4f-4df49e8356fc%40bareos.com.


OpenPGP_0xC9343A2D7259BD60.asc
Description: application/pgp-keys


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] bareos-19-2.7-2 on CentOS 7: S3/droplet to AWS and ceph both fail

2020-11-20 Thread Andreas Rogge
Am 20.11.20 um 17:11 schrieb Dmitry Ponkin:
> I just patched 19.2.7 to use marker.bareos and put that file into every
> bucket. It's a subpar solution at best and should not be merged.

If you didn't upgrade Bareos or libdroplet and it suddenly broke, I
guess it was the other end  breaking compatiblility. Do you have any
idea, what change at Amazon's broke access to "/" in the buckets?

Listing the Buckets is not sufficient, because the client might see a
bucket, but does not have (write) access to it.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ab5871c2-872c-6337-940d-679a78e43e12%40bareos.com.


OpenPGP_0xC9343A2D7259BD60.asc
Description: application/pgp-keys


OpenPGP_signature
Description: OpenPGP digital signature


Re: [bareos-users] bareos-fd install omnios

2020-11-18 Thread Andreas Rogge
Hi,

I'm not sure if that helps you, but as far as I can tell OmniOS supports
NDMP, so you could back it up using Bareos' NDMP support (which is not
that simple to set up, but works really well).

Best Regards,
Andreas

Am 18.11.20 um 17:07 schrieb David Lawley:
> Been working with Omnios now for about year, so its still rather new to me.
> 
> Planing to use it as a method to replace my aging w2k3 servers that are
> file server only
> 
> I noticed there is now a Solaris package..
> 
> And hoping that someone has installed it, might might share some hints
> on getting it installed
> 
> Kinda stuck with a missing library
> 
> No version for 'require' dependency on library/jansson
> 
> But I have grabbed it (git), built and installed
> 
> So.. being a newbie on the OmniOS front   someone might share a hint
> to get over this pothole
> 
> THANKS!
> 
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/dc634506-ff01-b89c-b454-60a44c7a52f4%40upilab.com
> <https://groups.google.com/d/msgid/bareos-users/dc634506-ff01-b89c-b454-60a44c7a52f4%40upilab.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/c2efb6ee-1012-054a-59d5-beb55cb14c9f%40bareos.com.


Re: [bareos-users] nightly repo

2020-11-18 Thread Andreas Rogge
Hi,

thanks for bringing this up.
Due to an operator error the nightlies were cleaned out. Usually, the
next push to the master branch would have re-filled the download-server.
  However, we're having an issue with Fedora 33 and thus the build does
not pass our quality gates which stops it from being published.
I hope we can merge the change that fixes building on Fedora 33 really
soon and after that, nightlies will be available again.

TL;DR
This is a temporary issue. We broke it and are going to fix it really
soon now.

Best Regards,
Andreas

Am 17.11.20 um 18:36 schrieb Роман Черкалин:
> Looks http://download.bareos.org/bareos/experimental/nightly/ is empty, no 
> more nightlies or is temporary issue?
> 
> With regards,
> Roman Cherkalin
> NPP Mera
> 

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/d6af7b4f-d9d8-8d45-e8d7-9c272fdd1e40%40bareos.com.


Re: [bareos-users] MySQL plugin planned in UCS-Repo?

2020-11-17 Thread Andreas Rogge
Hi,

there is no supported MySQL plugin.
Maybe you're looking for the Percona Xtrabackup plugin? This is shipped
for UCS in the package
bareos-filedaemon-percona-xtrabackup-python-plugin

See here:
https://download.bareos.org/bareos/release/19.2/Univention_4.3/amd64/

Best Regards,
Andreas

Am 21.10.20 um 11:34 schrieb Sven Gehr:
> 
> Hi@all,
> 
> 
> to backup our groupware server I need the MySQL plugin All servers are
> UCS (4.4.6). But I can't find the plugin in the Ropository:
> 
>   * bareos-director-python-plugin
>   * bareos-filedaemon-ceph-plugin
>   * bareos-filedaemon-ldap-python-plugin
>   * bareos-filedaemon-python-plugin
>   * bareos-storage-python-plugin
>   * bareos-vmware-plugin
>   * bareos-vmware-plugin-compat
> 
> 
> Is this PlugIn not available for UCS?
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/3f8e0f44-07a1-4520-a397-4dc6ee506405n%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/3f8e0f44-07a1-4520-a397-4dc6ee506405n%40googlegroups.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/7f8e81cf-3469-5213-35e4-72a086c0bfdc%40bareos.com.


Re: [bareos-users] bareos-vmware-plugin missing in SLES12

2020-10-02 Thread Andreas Rogge
Am 07.09.20 um 12:35 schrieb 'Peter Allgeyer' via bareos-users:
> I wanted test Bareos VMware Plugin on SLES 12 SP4 but didn't found the
> required packages:
> https://download.opensuse.org/repositories/home:/sys-deb/SLE_12_SP4/x86_64/
That is not our repository, you'll have to ask the OpenSUSE people about
these packages.

> The documentation told me, that it should be there:
> https://docs.bareos.org/master/Appendix/OperatingSystems.html
That information might be simply wrong.

> Can anybody tell me why it has been gone?
I'm not sure. As far as I can tell the latest SLES with VMware plugin
packages was SLES12SP3 - and I'm not sure these were installable tbh.

I don't think we will spend time building these for SLES 12 again unless
a support customer asks for it.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/0f96319e-6ce6-5366-b70d-1a06ef4b24ac%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: Building on PopOS 20.04

2020-10-01 Thread Andreas Rogge
Hi Karl,

I just looked at ubuntu 20.04 and the situation is like you describe:
I have /usr/include/x86_64-linux-gnu/sys/types.h and /usr/include/sys/acl.h

You can look at the compilers default include path as follows:

gcc -xc -E -v - < /dev/null

This will print a lot of information. One section should be something
like "#include <...> search starts here:". There you'll see a list of
directories that are searched for include files.

I don't have easy access to a pop!os (no docker images available), so I
cannot test this quickly. However, CMake does basically something like
the following for the test, so you could minimalize your test-case like
follows:

It creates a source-file e.g. "test.c" with the following content
-- CUT HERE --
#include 
#include 

int main() {
}
-- CUT HERE --

try to compile with "gcc test.c".

If that fails, you have a problem that your compiler does not pick up
/usr/include/x86_64-linux-gnu as an include directory. This would happen
for example if you're compiling on a platform that is not x86_64-linux-gnu.

If it works, probably something in cmake or our cmake configuration is
broken.

Hope that helps!

Best Regards,
Andreas

Am 27.09.20 um 18:36 schrieb Karl Cunningham:
> Well, I guess I need to dig a little deeper before I complain.
> I still don't know why this is happening, but I found a workaround.
> The  libacl include detection requires both sys/types.h  and 
> sys/libacl.h, per line 35 of /core/cmake/BareosCheckIncludes.cmake.
> On both 18.04 and 20.02, sys/types.h is  found
> in /usr/include/x86_64_linux_gnu/  and  sys/libach.h  is found in 
> /usr/include/.
> In 20.04, if I create a symlink:
> ln -s /usr/include/x86_64_linux_gnu/sys/types.h  /usr/include/sys/
> then cmake runs without error, but it's obviously not solving the
> underlying problem.
> 
> Karl
> On Saturday, September 26, 2020 at 12:37:29 PM UTC-7 Karl Cunningham wrote:
> 
> All,
> I'm trying to compile a bareos client on PopOS 20.04. I run cmake
> from the build directory with the following options:
> cmake -Dclient-only=yes -Dconfdir=/etc/bareos ../bareos
> But it gives the following error:
> CMake Error at core/CMakeLists.txt:640 (message):
> build with acl requested, but lib not found
> 
> libacl1-dev is installed and /usr/include/sys/acl.h is there.
> 
> Doing the same on Ubuntu 18.04 succeeds.
> Adding -Dacl=no to the cmake options on PopOS succeeds.
> 
> Does anyone have an idea what I'm doing wrong, or what I can do to
> investigate further?
> 
> Thanks,
> Karl
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/a39c44c0-8d15-4df7-ab56-16721a32aec8n%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/a39c44c0-8d15-4df7-ab56-16721a32aec8n%40googlegroups.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9c40a485-8213-00e0-0bfb-ec84b9790e43%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: Building 19.2 for arm

2020-09-24 Thread Andreas Rogge
Hi Karl,

sound like you did a great job here :)

It is possible to build Debian packages from our master branch using our
build configuration. While this will need some ARM-specific changes
(e.g. there is no  VMware VDDK for ARM) the resulting packages would
look mostly like the ones we provide for x86_64.

If you want to go the extra mile and make that work, we will happily
accept a pull-request. I can also offer some guidance if you get stuck.

As a benefit to you (and the rest of the community) building packages
for Raspian would work out of the box.

Maybe then I could even convince the other devs to add some Raspberry
Pis to our continuous integration system and provide Raspian packages in
the future :)

Best Regards,
Andreas

Am 21.09.20 um 19:34 schrieb Karl Cunningham:
> I found the problem. I was putting configs into /etc/bareos but building
> with the default config directory /usr/local/etc/bareos
> Sorry for the confusion.
> Karl
> 
> On Friday, September 18, 2020 at 11:41:35 AM UTC-7 Karl Cunningham wrote:
> 
> Hello,
> 
> I'm trying to get a 19.2 client to work on a Raspberry Pi running
> Raspian buster. I successfully compiled the 19.2 client, but a
> connection from the director failed with the usual message:
> Connecting to Client sp0-fd at sp0..com:9102
> <http://sp0..com:9102>
> Probing client protocol... (result will be saved until config reload)
> Failed to connect to Client sp0-fd.
> 
> *messages
> 18-Sep 09:14 bareos-dir JobId 0: Fatal error: Authorization key
> rejected bareos-dir.
> 18-Sep 09:14 bareos-dir JobId 0: Fatal error: Unable to authenticate
> with File daemon at "sp0..com:9102
> <http://sp0..com:9102>". Possible causes:
> Passwords or names not the same or
> TLS negotiation failed or
> Maximum Concurrent Jobs exceeded on the FD or
> FD networking messed up (restart daemon).
> 
> I disabled TLS on the director and client, but that didn't seem to
> make a difference.
> Connection from the director to a freshly-compiled amd64 client
> works fine.
> I installed the 16.2 client from the Raspbian repo and the director
> was able to connect, but I'd like to use 19.2 since that's what is
> on other client machines.
> Is there a known issue building the client on arm?
> 
> Thanks for your help.
> Karl
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/46506360-b462-4062-8f3c-6639960abfddn%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/46506360-b462-4062-8f3c-6639960abfddn%40googlegroups.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9c7accba-e84c-b2c8-7651-48b38ecd7123%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Compiling "latest" bareos client (fd) for missing OS flavours.

2020-09-18 Thread Andreas Rogge
Hi Oleg,

if we don't ship it, chances are building will not work out of the box.

You can find the spec-file for rpm-based distributions in
core/platforms/packaging. However, depending on the version you're
building you will have to repack the sources (older releases will be
build from a tarball containing just the "core" directory).
The debian build stuff is, of course, in the Debian subdirectory.

There is not much magic going on when we build Bareos, so anyone should
be able to build most of it.

Best Regards,
Andreas

Am 18.09.20 um 09:09 schrieb Oleg Volkov:
> HI, All
> 
> I need update bareos clients to "latest" on number of quite obsolete OSes.
> Where can I find a generic instruction to do that ?
> 
> Thanks a lot.
> Oleg
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/9c532eba-c8ff-4747-b186-f0c52f5a60a9n%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/9c532eba-c8ff-4747-b186-f0c52f5a60a9n%40googlegroups.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/eebbe202-e363-4544-b6c6-7e992d2bad7f%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Win10-Client TLS Handshake faild

2020-08-31 Thread Andreas Rogge
Hi Sven,

you cannot attach a newer client to an older director.
If you need to stay on Bareos 17.2 (which will probably see its End of
Life at the end of this year), you will have to use the packages for
17.2 on the client.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/977192ad-14d1-fc0f-f080-e2ab0c0b00e8%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Backup from a Windows File Server, with Microsoft deduplication enabled?

2020-08-24 Thread Andreas Rogge
Am 20.08.20 um 19:37 schrieb Alexandre Guedes:
> 
> Does it makes sense? Some advise?

Right now there is no working deduplication in Bareos. AFAICT Basejobs
are not the way to go. They have some "interesting" (in the worst
meaning of the word) limitations when it comes to backup encryption,
copy & migrate jobs, and desaster recovery.
Sorry.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/9a8554b4-1083-9497-8349-304e70679836%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Creating new medium fails in cats/sql_create.cc:489

2020-08-20 Thread Andreas Rogge
Hi,

the MySQL backend is deprecated and is not getting much attention
anymore. Please consider migrating to PostgreSQL. Bareos 19.2 provides a
migration tool (bareos-dbcopy) for that.

You can probably work around the issue by configuring the sql_mode for
your MySQL server so that the deprecated syntax will still work. The
offending flag is probably "NO_ZERO_DATE" which is enabled in SQL strict
mode.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/5de35bc5-3b30-8f6f-4f0c-a0caa92c3e91%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Backup from a Windows File Server, with Microsoft deduplication enabled?

2020-08-20 Thread Andreas Rogge
Hi Alexandre,

Am 16.08.20 um 01:16 schrieb Alexandre Guedes:
> I was wondering if Bareos would handle well the Full+Incremental backups
> from a Windows deduplicated system. Tried to look for some
> documentation, but did not found any kind of Bareos documentation about.

it should just work. However, you will not see the deduplication in
Bareos, because it will take all the data so there will not be any
deduplication benefits there.

If your incrementals pick up too much data, it is probably best to
implement a small fileset (100 files or so) and try with that. This way
you can look at "list files jobid=XX" to see what files have actually
been backed up by the incremental and can provide a more meaningful
description of the problem, so we can find out what is going wrong.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/71004f92-0de1-5d22-9629-d6afe4fbe46f%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] docker image barcus/bareos-director isnt working

2020-08-20 Thread Andreas Rogge
Hi,

Am 18.08.20 um 05:28 schrieb Stefan Fuhrmann:
> Can someone help?
>

while we have noticed Barcus and really appreciate the work, we haven't
been in contact with the project yet.
Maybe the developer there can help you out.

I would really love to see an "official" dockerized version of at least
the director and the sd as part of the Bareos project, but we don't have
the menpower to pull this off right now.

However, if somebody wants to give it a try, I can provide some guidance.

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/88174333-7182-83f0-7839-559eb5cd97da%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: installation of bareos fails

2020-08-07 Thread Andreas Rogge
Hi Tilman,

Am 07.08.20 um 01:26 schrieb 'Tilman Glotzner' via bareos-users:
> An apt search seems to return only 64 bit package. So I assume that the
> repository for 18.04 does not host any 32bit packages.
That's correct. We decided not to build i386 packages for Ubuntu 18.04
anymore. The last Intel CPUs that didn't support x86_64 were End-of-Life
in 2006 and we had the impression that 12 years was enough time to
assume people have finally migrated.

> In the meanwhile, I have pursued a different path and compiled bareos
> from source. After reimplementing a bug fix ( 0001220
> <https://bugs.bareos.org/view.php?id=1220>) that apparently is not
> included in the source release but only  in a later version and
> recompiling it, if works.What sources were you building? For Bareos 19.2 that 
> patch is included
in the sources for 19.2.7 and later:

$ git tag --contains 60e7731
Release/19.2.7
Release/19.2.8

Best Regards,
Andreas

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/ba97e4aa-f084-0001-3537-1cea240e60bb%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: Bareos 19.2.8 released but not available via repo

2020-07-28 Thread Andreas Rogge
Hi Joe,

maybe I can clarify the situation somewhat.
As stated at the top of the Release Notes[1] "the releases of packages
on http://download.bareos.org is limited to the initial versions of a
major release".

However, the releases 19.2.5, 19.2.6 and 19.2.7 contain fixes for
regressions introduced in 19.2 (i.e. #1172, #1175, #1176, #1190 and #1192).
As a result, the company decided to publish these on download.bareos.org
so that an upgrade from 18.2 to 19.2 will not introduce these regressions.

Best Regards,
Andreas

[1] https://docs.bareos.org/master/Appendix/ReleaseNotes.html

Am 27.07.20 um 15:10 schrieb Joe:
> Hi Olaf,
> 
> Thank you for your answer.
> At first I thought the same but I have done two minor 19.2 updates
> (19.2.6 in February and 19.2.7 in April) during the last months which
> were all available from said mirror.
> 
> Best regards,
> Joe
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/e4ce4bee-d814-87a7-4b38-7a6c43f01b64%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] bareos-fd debug level

2020-06-08 Thread Andreas Rogge
You can use "setdebug trace=1 level=NN client=XXX" on the director to
enable tracing on the client. This will log all debug messages to a file
(the setdebug command will output the location of the tracefile).

Best Regards,
Andreas

Am 07.06.20 um 15:40 schrieb Oleg Volkov:
> Thank you,
> I see debug messages comes to console.
> Is it possible to forward them to /var/log/bareos/something.log or SYSLOG ?
> There is rare error on client side that I need to catch.
> 
> 
> 
> On Sunday, June 7, 2020 at 4:24:36 PM UTC+3, Andrei Brezan wrote:
> 
> On 07/06/2020 14:35, Oleg Volkov wrote:
> > Hi, All
> >
> > According to "man bareos-fd" there is "-d nn" option to set up
> debug level.
> > Do anybody know what "nn" should be ?
> 
> I usually use 150 or 100. You can check the source code for debug
> messages to see their level is you know where your issues are
> happening,
> one example is
> 
> https://github.com/bareos/bareos/blob/master/core/src/plugins/filed/BareosFdPluginPerconaXtraBackup.py#L165
> 
> <https://github.com/bareos/bareos/blob/master/core/src/plugins/filed/BareosFdPluginPerconaXtraBackup.py#L165>
> 
> 
> -- 
> Andrei
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/ee318782-2b65-4615-96ce-d35034b74137o%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/ee318782-2b65-4615-96ce-d35034b74137o%40googlegroups.com?utm_medium=email_source=footer>.

-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/48e29f83-0ec9-1cc3-9cf4-0ad45cc2f5aa%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Bareos data encryption

2020-04-29 Thread Andreas Rogge
Am 29.04.20 um 13:22 schrieb Valentin Dzhorov:
> 
> Can anyone let me know what am I doing wrong here? Thank you all in advance!
That really depends on where you see the "Encryption: None" message.
In Bareos' context encryption can mean three different things:
- the PKI-based encryption of the backed up data (which is what you're
trying)
- the transport encryption (SSL) between dir, fd and sd
- hardware-assisted tape-encryption

I think you're seeing the message because the director cannot establish
a secure connection to the FD. However, PKI-based content-encryption may
still take place.

To test content-encryption you can try a restore of the data to another
client that has no access to the required key material.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/1d96c04b-7b06-8c68-3620-f7a63c10d8c8%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Re: A little backup tool for my desktop

2020-04-20 Thread Andreas Rogge
Am 17.04.20 um 22:45 schrieb p...@citylink.dinoex.sub.org:
> Hm - nobody has an idea what to do about those error messages? Thats
> bad, But then, we'll try to handle it on BBC.

You didn't mention any of the actual messages, so no - nobody has a clue
what you're talking about.

Best Regards,
Andreas
-- 
Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/e41816c3-b99a-47f3-6e3a-413287bfc9ab%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Does anyone know why the storage-droplet package is not available for CentOS/RHEL 8?

2020-04-06 Thread Andreas Rogge
Hi Evgenij,

the droplet library requires openssl 1.0 to build. As RHEL 8 does not
contain compat-openssl-devel, we cannot build droplet and thus cannot
build bareos-storage-droplet right now.

Best Regards,
Andreas

Am 03.04.20 um 19:20 schrieb Evgenij:
> Does anyone know why the storage-droplet package is not available for
> CentOS/RHEL 8?
> 
> CentOS 7
> Repo: 
> https://download.bareos.org/bareos/release/19.2/CentOS_7/x86_64/bareos-storage-droplet-19.2.6-2.el7.x86_64.rpm
> CentOS 8
> Repo: https://download.bareos.org/bareos/release/19.2/CentOS_8/x86_64/:
> there is no rpm
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/05b0748c-8ba2-4dee-b501-af723b8af3f3%40googlegroups.com
> <https://groups.google.com/d/msgid/bareos-users/05b0748c-8ba2-4dee-b501-af723b8af3f3%40googlegroups.com?utm_medium=email_source=footer>.

-- 
  Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/631bd2be-8d22-1b5f-1f18-43c729df54c4%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] pause a job

2020-04-03 Thread Andreas Rogge
Hi Kai,

while this would be a great feature it is not implemented yet and it has
not made it to our roadmap either.

Best Regards,
Andreas

Am 03.04.20 um 10:58 schrieb Kai Zimmer:
> Hi,
> 
> is it possible to pause a job to resume it later from the point where it
> left off?
> 
> E.g. a running job tells me it needs more tapes and waits for them. I
> exchange a bunch of tapes in my library and after i labeled the first of
> them, bareos immediately starts again so i can't label the rest of the
> tapes now. It would be nice if i could run a pause command, label all
> new tapes and resume the job again.
> 
> Best regards,
> 
> Kai
> 

-- 
  Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/a08d0cbe-8e64-8e5b-ff96-b8f63280d18a%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Struggling with FileSet Configuration for Wildcard directories in Path

2020-03-09 Thread Andreas Rogge
Am 05.03.20 um 10:44 schrieb Julian Meyer:
> Hi,
> 
> im struggling with setting up a FileSet Configuration for a Cassandra
> Database Server. The Target is to backup the configuration of the server
> and the snapshot (= dumps of database) directories. 

Add a second Include{}-Block to your Fileset and use WildFile to include
only the files you want:

Include {
  Options {
WildFile =  /var/lib/cassandra/data/*/*/snapshots/*
  }
  File = /var/lib/cassandra/data
}
(this is untested, but I think it should work)

You can see if that matches the files you want with "estimate
job= listing"

Best Regards,
Andreas

-- 
  Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/fa775409-be88-a2b5-5f03-f5e4a081b3a4%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Debian repo unsigned ?

2020-03-02 Thread Andreas Rogge
Am 28.02.20 um 18:36 schrieb Marc Leforestier:
> 
> # wget -q http://download.bareos.org/bareos/release/latest/Debian_9.0
> -O- | apt-key add -
> gpg: aucune donnée OpenPGP valable n'a été trouvée.

That's not the correct URL you're using there. Retry with
https://download.bareos.org/bareos/release/latest/Debian_9.0/Release.key

Where did you get that URL?

Best Regards,
Andreas

-- 
  Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/4974679d-34f1-c889-d538-c27a2afad69b%40bareos.com.


signature.asc
Description: OpenPGP digital signature


Re: [bareos-users] Backing up WwebDAV

2020-03-02 Thread Andreas Rogge
Hi,

while backing up WebDAV is not one of our priorities and there is no
ongoing effort to provide this, it sounds like it was a great addition
to Bareos. As it can probably be done with a FD-plugin written in
Python, it is most likely not that hard to do.

If you feel capable to write such a plugin, we can discuss integration
into our codebase. If you're not capable of implementing it yourself but
you really need the feature, you can probably find someone who can
implement it for you or you can even talk to our sales team to start a
co-founding if you want.

Having said that, you can always work around the need for a plugin using
a pre-script that copies all the data to another system and then backup
the data from there.

Best Regards,
Andreas

Am 28.02.20 um 07:48 schrieb tklassen:
> Hello list,
> i haven´t found a way to backup a WebDAV storage, is it even possible
> with Bareos?
> 
> Im trying to backup my voip system if possible.
> 
> Greetings!
> 
> -- 
> 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+unsubscr...@googlegroups.com
> <mailto:bareos-users+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bareos-users/3fb7c32b-07d7-04e5-187d-50cd58867fb9%40schokokeks.org
> <https://groups.google.com/d/msgid/bareos-users/3fb7c32b-07d7-04e5-187d-50cd58867fb9%40schokokeks.org?utm_medium=email_source=footer>.

-- 
  Andreas Rogge andreas.ro...@bareos.com
  Bareos GmbH & Co. KG  Phone: +49 221-630693-86
  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. Steffens, Philipp Storz

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/497dc081-7717-1e3d-a0b3-f2c47c8aca40%40bareos.com.


signature.asc
Description: OpenPGP digital signature


  1   2   >