Configuring Delinea Credentials Cache on Red Hat Enterprise Linux

To configure Delinea Credentials Cache on Red Hat Enterprise Linux, you must install .NET Core. The following section provides the installation steps.

You must also perform the following configuration tasks:

Installing .NET Core on Red Hat Enterprise Linux

Open the Red Hat command prompt with root privileges and run the commands in the order listed below.

  1. sudo rpm --import

    Example:https://packages.microsoft.com/keys/microsoft.asc

  2. sudo tee /etc/yum.repos.d/dotnet-sdk.repo

    Example: << EOF

    [microsoft-dotnet]

    name=Microsoft dotnet

    baseurl=https://packages.microsoft.com/rhel/7/prod/

    enabled=1

    gpgcheck=1

    gpgkey=https://packages.microsoft.com/keys/microsoft.asc

    EOF

    If you use RHEL 8, replace rhel/7 with rhel/8 in the base URL line.

  3. sudo yum install aspnetcore-runtime-7.0

    Example: Updating Subscription Management Repositories