Management Console as an RPM

The Management Console RPM allows administrators an opportunity to manage and control Linux packages in a way that complies to their individual corporate IT policies. The teradicimc-<version>.rpm package, when connected to the internet, will automatically update any required dependencies not available on your Linux VM so you can be operational quickly. The RPM is provided as a file for download. A public RPM repository will be available for seamless installs in a future release.

By introducing this RPM package into your network, you accept that there are risks involved in deploying the system, and you acknowledge that you have reviewed the default PCoIP Management Console and CentOS configuration and have performed any other changes to make the security level appropriate for your deployment.

Update your software to the current release

From time to time, updates may be made available, either from Teradici or the developers of CentOS. While Teradici recommends staying current on releases, it is also recommended that you test updates on a test system prior to upgrading your production system or back up a snapshot of the PCoIP Management Console before running the update.

Linux Proficiency

It is expected that administrators of Linux operating systems are proficient at using the Linux OS and have an account with sudo access. Different Linux distributions may require different procedures. Teradici uses the Linux CentOS distribution for instructional information.

Dedicated Host

It is recommended that the Management Console host be dedicated for Management Console use only.

Minimum Requirements Validation

The Management Console RPM package will check for the minimum hardware resource requirements (CPU, disk, ram) and fail if it is not met. To disable the minimum requirement check, enter the following command:
sudo MC_NO_CHECK=1 rpm -Uvh teradicimc-<version>.rpm
Disabling the minimum requirements check is not recommended! Lowering minimums may reduce Management Console performance, particularly in large deployments.

Management Console RPM Installation and Removal

With the teradicimc-<version>.rpm and teradicimc-postgresql14-offline-dependencies.tgz packages, you will have everything that Management Console needs in order to work except the firewall exceptions. After installation, make sure that you have configured your firewall and that it complies to your corporate security policies. If you don't have a security policy, you can review the firewall reference that will allow you to get an understanding of what firewall requirements Management Console needs to be operational. Once the firewall exceptions are made, you can upgrade or remove the Management Console as required.

Directions for upgrades are described in Upgrading Management Console Using RPM.

RPM Installation

These instructions apply to the first time installation of Management Console on a host Linux machine that contains the RPM and offline dependencies tarball.

Installations without Internet Access

If you are a customer without internet access (sometimes referenced as a dark site), you must have all dependencies installed in the Management Console host operating system prior to using the RPM. See Dark Site Deployments for any required dependencies for this release.

  1. Download the RPM, dependency, and script files from the Teradici support site and ensure they are located on the Management Console Linux VM.

    You can use a third party tool such as WinSCP to copy and move files into the CentOS/RHEL host operating system.

  2. Login to the CentOS/RHEL host operating system and create a new directory named postgresql14_dependencies under the logged in user directory.

    cd ~
    mkdir postgresql14_dependencies
    
  3. Move the teradicimc-postgresql14-offline-dependencies.tgz file into the new postgresql14_dependencies directory.

  4. Give permission to teradicimc-postgresql14-install.sh file and run the script.

    chmod +x ./teradicimc-postgresql14-install.sh
    sudo sh ./teradicimc-postgresql14-install.sh teradicimc-postgresql14-offline-dependencies.tgz
    

    Verify install

    Verify the installed PostgreSQL version is 14.1.
    psql -V
    Sample output
    PostgreSQL Version Verification

  5. Install the RPM following the commands of your Linux distribution.

    • CentOS users enter sudo yum install teradicimc-<version>.rpm from the directory where the rpm file is located.

    • RHEL users perform the following steps:

      1. sudo subscription-manager repos --enable rhel-7-server-optional-rpms --enable rhel-7-server-extras-rpms

      2. sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

      3. sudo yum install teradicimc-<version>.rpm from the directory where the rpm file is located.

  6. After a successful Management Console install, delete the teradicimc-postgresql14-install.sh file.

    rm teradicimc-postgresql14-install.sh

  7. Configure your firewall.

    IPv4 See the firewall reference on how to configure Management Console firewall for use in an IPv4 environmnent perform the following steps:.

    IPv6 See the firewall reference on how to configure Management Console firewall for use in an IPv6 environmnent perform the following steps:

  8. If applicable, enable your HSTS policy. See HTTP Strict Transport Security.

  9. If installing Management Console Enterprise, license your installation.

Removal

To remove Management Console you will have two choices, remove only the Management Console or remove the Management Console with all its dependencies.

  • To remove Management Console only, enter:

    sudo yum remove teradicimc

  • To remove Management Console and any package that was required by Management Console i.e., enter:

    sudo yum autoremove teradicimc

  • To remove PostgreSQL14.1, enter:

    psql -U <username>
    drop database <mc_database_name>;
    \q
    sudo yum remove postgresql