For testing purposes, I stalled Bareos package 18.2 on debian buster (testing) using the customized install script attached.
Installation runs without any issues, but when doing the first self tests, the client terminates immediately with attached console massage. I know that some openssl libraries have been changed in deb-buster recently, so I assume a certain incompatibilty. Does anyone else experienced the same ? Does anyone know a workaround ? -- 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 [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
21-Nov 15:46 bareos-dir JobId 2: No prior Full backup Job record found. 21-Nov 15:46 bareos-dir JobId 2: No prior or suitable Full backup found in catalog. Doing FULL backup. 21-Nov 15:46 bareos-dir JobId 2: Start Backup JobId 2, Job=backup-bareos-fd.2018-11-21_15.46.14_05 21-Nov 15:46 bareos-dir JobId 2: Error: lib/crypto_openssl.cc:1565 Connect failure: ERR=error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error 21-Nov 15:46 bareos-dir JobId 2: Error: lib/crypto_openssl.cc:1565 TLS shutdown failure.: ERR=error:140E0197:SSL routines:SSL_shutdown:shutdown while in init 21-Nov 15:46 bareos-dir JobId 2: Fatal error: TLS negotiation failed. 21-Nov 15:46 bareos-dir JobId 2: Error: Bareos bareos-dir 18.2.4rc1 (25Sep18): Build OS: Linux-4.4.92-6.18-default debian Debian GNU/Linux 9.5 (stretch) JobId: 2 Job: backup-bareos-fd.2018-11-21_15.46.14_05 Backup Level: Full (upgraded from Incremental) Client: "VM-BST05-fd" FileSet: "SelfTest" 2018-11-21 15:43:11 Pool: "Full" (From Job FullPool override) Catalog: "MyCatalog" (From Client resource) Storage: "File" (From Job resource) Scheduled time: 21-Nov-2018 15:46:11 Start time: 21-Nov-2018 15:46:16 End time: 21-Nov-2018 15:46:16 Elapsed time: 0 secs Priority: 10 FD Files Written: 0 SD Files Written: 0 FD Bytes Written: 0 (0 B) SD Bytes Written: 0 (0 B) Rate: 0.0 KB/s Software Compression: None VSS: no Encryption: no Accurate: no Volume name(s): Volume Session Id: 0 Volume Session Time: 0 Last Volume Bytes: 0 (0 B) Non-fatal FD errors: 2 SD Errors: 0 FD termination status: SD termination status: FD Secure Erase Cmd: <NULL> SD Secure Erase Cmd: <NULL> Termination: *** Backup Error ***
#!/bin/bash # # define parameter # DIST=Debian_9.0 # or # DIST=Debian_8.0 # DIST=xUbuntu_16.04 # DIST=xUbuntu_14.04 # DIST=xUbuntu_12.04 RELEASE=release/18.2/ # or # RELEASE=release/latest/ # RELEASE=experimental/nightly/ URL=http://download.bareos.org/bareos/$RELEASE/$DIST # add the Bareos repository printf "deb $URL /\n" > /etc/apt/sources.list.d/bareos.list # add package key wget -q $URL/Release.key -O- | apt-key add - # purge old bareos versions # apt purge bareos bareos-bconsole bareos-client bareos-database-tools bareos-director bareos-filedaemon bareos-database-mysql bareos-database-common bareos-storage bareos-storage-tape bareos-tools bareos-common libfastlz # install Bareos packages # apt-get update # apt install bareos bareos-bconsole bareos-client bareos-database-tools bareos-director bareos-filedaemon bareos-database-mysql bareos-database-common bareos-storage bareos-storage-tape bareos-tools bareos-common libfastlz
