Installation error in RHEL 8.3 64 bit

HI,
While installing kaltura server in RHEL 8.3 64 bit version because of the below error-
Last metadata expiration check: 0:04:25 ago on Sat 17 Apr 2021 08:21:42 PM IST.
Error:
Problem: package kaltura-server-16.14.0-1.noarch requires kaltura-front, but none of the providers can be installed

  • conflicting requests
  • nothing provides ImageMagick needed by kaltura-front-16.14.0-1.noarch
  • nothing provides kaltura-sshpass needed by kaltura-front-16.14.0-1.noarch
  • nothing provides php-pecl-apc needed by kaltura-front-16.14.0-1.noarch
  • nothing provides php-pecl-memcache needed by kaltura-front-16.14.0-1.noarch
    (try to add ‘–skip-broken’ to skip uninstallable packages or ‘–nobest’ to use not only best candidate packages)

Please advise how to fix this error,
Ran this instruction - yum install kaltura-server
and also tried with --nobest and --skip-broken

Any update on how to fix the above issue please.

Hello @suman_kumar_dey,

Please post the contents of /etc/yum.repos.d/kaltura.repo and the output for lsb_release -a.

Thanks,

Hello @jess ,

Below are the contents please-

[Kaltura]
name = Kaltura Server
baseurl = http://installrepo.kaltura.org/releases/latest/$releasever/RPMS/$basearch/
gpgkey = http://installrepo.kaltura.org/releases/RPM-GPG-KEY-kaltura-curr
gpgcheck = 1
enabled = 1

[Kaltura-noarch]
name = Kaltura Server arch independent
baseurl = http://installrepo.kaltura.org/releases/latest/$releasever/RPMS/noarch
gpgkey = http://installrepo.kaltura.org/releases/RPM-GPG-KEY-kaltura-curr
gpgcheck = 1
enabled = 1


lsb_release -

LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: RedHatEnterprise
Description: Red Hat Enterprise Linux release 8.3 (Ootpa)
Release: 8.3
Codename: Ootpa

Hi @jess ,

Any updates please on the installation error based on the details shared.

Regards,
@suman_kumar_dey

Hi,

Anyone in the community have any updates please on how to fix the installation issue that I posted around 3 weeks back

Hello @suman_kumar_dey,

ImageMagick is not included in the standard RHEL 8 repositories.
In order to install the ImageMagick package, you should add epel-release repository to your server.

The following is example commands for adding the epel-release to RHEL 8.

# dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
# ARCH=$( /bin/arch )
# subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms"

Similarly, in order to install php-pecl-apc and php-pecl-memache, you should add Remi repository to your server.
Therefore, you should use PHP packages in the Remi repository as standard packages in your server.

I use the CentOS for Kaltura server.
So, I’m not familiar with using the Remi repository on RHEL 8.
The commands to use PHP 7.2 package of the Remi repository as standard PHP package on the CentOS 8 is shown below.

# dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
# dnf reset module php
# dnf module install -y php:remi-7.2

Regards,