Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: small clarification; formatting

...

  • The VE license server package
  • A suitable Linux cloud instance to be used as license server
  • Correct firewall settings
  • The VE-capable Charon-SSP emulator software in the same cloud environment

These items are described below.

...

  • In versions before 1.0.17, the license server will not start automatically after the initial installation. It will be started once a valid license has been installed (see Installing a License on the VE License Server).
  • When upgrading to version 1.0.24 from an older version of the license server, a license update is required due to a change in the license schema.

...

VE License Server Installation Steps

Perform the following steps to install the VE License Server software:

  1. Copy the license server software package to the cloud instance:
    1. Use sftp to connect to the cloud instance.
      # sftp -i ~/.ssh/<mykey>  <user>@<cloud-instance-ip>
      where
      <mykey>
      is the private key of the keypair you associated with your cloud instance
      <user>
      is the privileged user associated with your cloud instance (e.g., "opc" on OCI, or "centos" for a CentOS instance on AWS)
      <cloud-instance-ip>
      the ip address of your cloud instance
    2. Copy the software package to the cloud instance using the following sftp command:
      > put <local-path-to-license-server-package>
  2. Use ssh to log in on the cloud instance.
    # ssh -i ~/.ssh/<mykey> <user>@<cloud-instance-ip>
  3. As a privileged user (root) go to the directory where you stored the installation package and install the package:
    1. Become the root user:          # sudo -i
    2. Go to the package location:   # cd <path-to-package-directory>
    3. Install the package:             
      1. Linux 7.x: # yum install license-server*.rpm
      2. Linux 8.x: # dnf install license-server*.rpm


Below, you find the sample output of an installation:

...

The log output below shows a sample Charon-SSP emulator and management package installation on a Linux 7 system:

Code Block
languagetext
# yum install charon*.rpm
Loaded plugins: fastestmirror, langpacks

(lines removed)

Resolving Dependencies
--> Running transaction check
---> Package charon-agent-ssp.x86_64 0:4.1.14-1 will be installed
---> Package charon-director-ssp.x86_64 0:4.1.14-1 will be installed
---> Package charon-manager-ssp.x86_64 0:4.1.14-1 will be installed
---> Package charon-ssp-4m.x86_64 0:4.1.14.cloud-1 will be installed
---> Package charon-ssp-4u+.x86_64 0:4.1.14.cloud-1 will be installed
---> Package charon-ssp-4v+.x86_64 0:4.1.14.cloud-1 will be installed
--> Finished Dependency Resolution

(lines removed)   

Dependencies Resolved

================================================================================
 Package             Arch   Version      Repository                        Size
================================================================================
Installing:
 charon-agent-ssp    x86_64 4.1.14-1      /charon-agent-ssp-4.1.14-x86_64    28 M
 charon-director-ssp x86_64 4.1.14-1      /charon-director-ssp-4.1.14       287 k
 charon-manager-ssp  x86_64 4.1.14-1      /charon-manager-ssp-4.1.14        4.2 M
 charon-ssp-4m       x86_64 4.1.14.cloud-1  /charon-ssp-4m-4.1.14.cloud-x86_64  5.5 M
 charon-ssp-4u+      x86_64 4.1.14.cloud-1  /charon-ssp-4u+-4.1.14.cloud-x86_64  41 M
 charon-ssp-4v+      x86_64 4.1.14.cloud-1  /charon-ssp-4v+-4.1.14.cloud-x86_64  41 M

Transaction Summary
================================================================================
Install  6 Packages

Total size: 120 M
Installed size: 120 M
Is this ok [y/d/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : charon-ssp-4u+-4.1.14.cloud-1.x86_64                          1/6 
  Installing : charon-ssp-4v+-4.1.14.cloud-1.x86_64                          2/6 
  Installing : charon-manager-ssp-4.1.14-1.x86_64                            3/6 
  Installing : charon-director-ssp-4.1.14-1.x86_64                           4/6 
  Installing : charon-agent-ssp-4.1.14-1.x86_64                              5/6 
Created symlink from /etc/systemd/system/multi-user.target.wants/ssp-agentd.service to /etc/systemd/system/ssp-agentd.service.
  Installing : charon-ssp-4m-4.1.14.cloud-1.x86_64                           6/6 
  Verifying  : charon-ssp-4m-4.1.14.cloud-1.x86_64                           1/6 
  Verifying  : charon-agent-ssp-4.1.14-1.x86_64                              2/6 
  Verifying  : charon-director-ssp-4.1.14-1.x86_64                           3/6 
  Verifying  : charon-manager-ssp-4.1.14-1.x86_64                            4/6 
  Verifying  : charon-ssp-4v+-4.1.14.cloud-1.x86_64                          5/6 
  Verifying  : charon-ssp-4u+-4.1.14.cloud-1.x86_64                          6/6 

Installed:
  charon-agent-ssp.x86_64 0:4.1.14-1      charon-director-ssp.x86_64 0:4.1.14-1   
  charon-manager-ssp.x86_64 0:4.1.14-1    charon-ssp-4m.x86_64 0:4.1.14.cloud-1     
  charon-ssp-4u+.x86_64 0:4.1.14.cloud-1  charon-ssp-4v+.x86_64 0:4.1.14.cloud-1    

Complete!

...