Jetbackup Won't Install

MattJW

Verified User
Joined
Dec 17, 2019
Messages
12
Hi All,

Trying to install Jetbackup onto a C7 server with the latest versions installed.

Code:
** Found 2 pre-existing rpmdb problem(s), 'yum check' output follows:
MariaDB-server-10.3.39-1.el7.centos.x86_64 has missing requires of galera
sendmail-cf-8.14.7-5.el7.noarch has missing requires of sendmail = ('0', '8.14.7', '5.el7')
***********************************
***********************************
yum --skip-broken list jetbackup5-directadmin --disablerepo=* 2>/dev/null | awk '{print $3" "$2}' | grep -E '^installed|^@/?jetapps-?|^@@commandline' | sed 's/^@\(.*\)$/\1/'



***********************************
***********************************
yum --skip-broken --showduplicates list jetbackup5-directadmin --disablerepo=* 2>/dev/null | awk '{print $3, $2}' | grep -E '^installed|^@/?jetapps-?|^@@commandline'

Code:
[root@XXX ~]# rpm -qa | grep -i sendmail
sendmail-cf-8.14.7-5.el7.noarch
[root@XXXX ~]# rpm -qa | grep -i galera
galera-4-26.4.13-1.el7.centos.x86_64
[root@XXXX ~]# /usr/local/directadmin/directadmin v
DirectAdmin v.1.650 ce51baa892c8b90004807fd1a8610294655d4c35
[root@XXXX ~]#

I can open a ticket with the Jetapps team as well, but thought I'd ask on here as it's specific to the installed software where it's failing.

Thanks,
 
Code:
[root@XXXX log]# yum check
Loaded plugins: fastestmirror
MariaDB-server-10.3.39-1.el7.centos.x86_64 has missing requires of galera
sendmail-cf-8.14.7-5.el7.noarch has missing requires of sendmail = ('0', '8.14.7', '5.el7')
Error: check all
[root@XXXX log]#
 
You have errors in your OS, fix them first
Maria DB is installed by Custombuild right ?
 
and I can see that sendmail and mariadb are excluded from yum:

Code:
exclude=apache* httpd* mod_* mysql* MySQL* mariadb* da_* *ftp* exim* sendmail* php* bind-chroot*
 
Code:
[root@XXXX my.cnf.d]# yum list installed | grep -i galera
galera-4.x86_64                       26.4.13-1.el7.centos             installed
[root@XXXX my.cnf.d]# rpm -qi galera-4
Name        : galera-4
Version     : 26.4.13
Release     : 1.el7.centos
Architecture: x86_64
Install Date: Thu Jun  8 07:52:41 2023
Group       : System Environment/Libraries
Size        : 44625782
License     : GPL-2.0
Signature   : RSA/SHA512, Thu Feb  2 18:02:04 2023, Key ID f1656f24c74cd1d8
Source RPM  : galera-4-26.4.13-1.el7.centos.src.rpm
Build Date  : Mon Oct 24 07:39:18 2022
Build Host  : centos74-amd64
Relocations : (not relocatable)
Packager    : Codership Oy
Vendor      : Codership Oy
URL         : http://www.codership.com/
Summary     : Galera: a synchronous multi-master wsrep provider (replication engine)
Description :
Galera is a fast synchronous multimaster wsrep provider (replication engine)
for transactional databases and similar applications. For more information
about wsrep API see http://launchpad.net/wsrep. For a description of Galera
replication engine see http://www.codership.com.

Copyright 2007-2014 Codership Oy. All rights reserved. Use is subject to license terms under GPLv2 license.

This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPLv2 license.

galera-4 looks to have been installed during the update to MariaDB 10.3, but yum wants galera

Code:
[root@XXXX my.cnf.d]# yum list available | grep galera
galera.x86_64                            25.3.12-2.el7                   epel   
[root@XXXX my.cnf.d]#
 
During install of MariaDB you didn't get any errors ? when installing mariadb galeria is automatically installed .
did you tried to rebuild mariadb ?
 
During install of MariaDB you didn't get any errors ? when installing mariadb galeria is automatically installed .
did you tried to rebuild mariadb ?
It installed fine, and MariaDB is up and running.

I've not tried to rebuild it yet though.
 
Also, looking in /usr/local/directadmin/custombuild/mysql

Code:
-rw------- 1 root root 10554356 Jun  8 07:52 galera-4-26.4.13-1.el7.centos.x86_64.rpm
-rw-r--r-- 1 root root  9793668 Sep 19  2019 galera-4-26.4.3-1.rhel7.el7.centos.x86_64.rpm
-rw-r--r-- 1 root root 10038244 Apr  8  2021 galera-4-26.4.8-1.el7.centos.x86_64.rpm

You can see the rpm version it installed.
 
I've fixed the issue with Jetbackup not installing:

Code:
Error: Package: jetbackup5-base-5.2.11-2.x86_64 (jetapps-stable)
           Requires: jetphp73-ftp >= 7.3.26.4

yum.conf
Code:
exclude=apache* httpd* mod_* mysql* MySQL* MariaDB* mariadb* da_* *ftp* exim* sendmail* php* bind-chroot*
? - I should have had more coffee
 
Last edited:
Glad you have solved, but this is already excluded on DA servers, just checked our Centos 7 server yum.conf and:
exclude=apache* httpd* mod_* mysql* MySQL* MariaDB* mariadb* da_* *ftp* exim* sendmail* php* bind-chroot*

Its already there, why is your yum,conf different then the stock DA yum.conf ?
 
Glad you have solved, but this is already excluded on DA servers, just checked our Centos 7 server yum.conf and:


Its already there, why is your yum,conf different then the stock DA yum.conf ?
I didn’t set this server up, I’m helping manage it. All my own DA servers are Rocky8.

The *ftp* was the issue in the exclude. Would you mind sharing your own C7 yum.conf example please?
 
Back
Top