Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width45%
Panel
titleOn the page:

Table of Contents


Column

 

Installation

Note
titleAttention!
  • License Server cannot be installed on the same computer as Axxon One. If you
  • have
  • have Axxon One installed on your computer, you must dedicate a separate computer to
  • install the License Server. You cannot
  • install the License Server
  • together with Axxon One
  • .
  • Port 443
  • port
  • must be open.

To install the private License Server in Linux OS, do the following:

  1. Create an activation request (
  2. see 
  3. see Creating an activation request).
  4. Contact an AxxonSoft manager to get the necessary license-server.deb package and the keyfile.zip key package for the private License Server.
    The keyfile.zip key package contains:
    1. Certificate: ngp.licserver.crt
    2. Private key: ngp.licserver.key
    3. Server key: server.license.key
    4. Client key: license.key
  5. Copy the license-server.deb package, received from an AxxonSoft manager, to the Downloads folder.
  6. Install the private License Server:

    Code Block
    languagebash
    sudo dpkg -i license-server.deb
  7. Make sure that there is a LEASE_ACCOUNTER_TLS_AUTH_ENABLED=true variable at the /etc/AxxonSoft/LicenseServer/ path in the license.conf configuration file. If the variable is missing, run the following command:

    Code Block
    languagebash
    sudo nano /etc/AxxonSoft/LicenseServer/license.conf
  8. Unzip the keyfile.zip archive, received from an AxxonSoft manager, into the keyfile folder:

    Code Block
    languagebash
    sudo mkdir keyfile & unzip keyfile.zip -d keyfile
  9. Go to the keyfile folder:

    Code Block
    languagebash
    cd ./keyfile/
  10. Add the ngp.licserver.crt certificate and the ngp.licserver.key private key to the /etc/AxxonSoft/LicenseServer/ directory:

    Code Block
    languagebash
    sudo cp ngp.licserver.crt ngp.licserver.key /etc/AxxonSoft/LicenseServer/
  11. Restart the License Server:

    Code Block
    languagebash
    sudo systemctl restart license
  12. Add the server.license.key to the /var/AxxonSoft/LicenseServer/keys directory:

    Code Block
    languagebash
    sudo cp server.license.key /var/AxxonSoft/LicenseServer/keys
  13. Restart the License Server:

    Code Block
    languagebash
    sudo systemctl restart license
  14. Infotitle
  15. Note
  16. As a result, two files will be located at the /var/AxxonSoft/LicenseServer/keys path: server.license.key and a key named as the system ID.

  17. Delete the server.license.key from the /var/AxxonSoft/LicenseServer/keys directory:

    Code Block
    languagebash
    sudo rm /var/AxxonSoft/LicenseServer/keys/server.license.key

Installing the private License Server in Linux OS is complete. To access the License Server web interface, you need to:

  1. Determine the address of the License Server using the command:
    Code Block
    systemctl status license
  2. Enter the obtained address into the browser's search bar.
  3. Activate the Client license.key on all Axxon One Servers in the domain using the activation utility (see Activation by applying license file).

    InfotitleNote

As a result,

...

Installing the private License Server in Linux OS is completethe License Server web interface will open (see Logging in to the License Server web interface).

Useful commands

Install: 

Code Block
languagebash
dpkg -i license-server.deb

Delete:

Code Block
languagebash
dpkg -r license-server

Restart the service:

Code Block
languagebash
systemctl restart license

Check the status of the service:

Code Block
languagebash
systemctl status license

View the service log:

Code Block
languagebash
journalctl -u license.service -r

Useful commands using Prometheus metrics

Check the status of the service:

Code Block
ngp_license_service_status

Where the response is:

  • 0—the service is working;
  • greater than or equal to 1—there are problems in the service operation.

Check license expiration time:

Code Block
ngp_license_expire_time_utc

The response contains the time in 64-bit Unix format. To convert the response to date and time format, you can use any available converter (for example, https://timeconverter.online/). For example, 1917820800 corresponds to October 10, 2030 in the value of the license key.

Info
titleNote

Metrics are sent either every three minutes or when connection with the License Server is lost.