Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section


Column
width50%


Panel
borderColor#CCCCCC
bgColor#FFFFFF
titleBGColor#F0F0F0
borderStylesolid
titleOn this page:
Table of Contents


Column



General information

The software module for the License Plate Recognition plate recognition VT in Axxon One is licensed by the processed video channels and by countries (see License plate recognition VT).

Note
titleAttention!

You must run the commands as root user.

Installing the Sentinel LDK Run-time environment

To install the Sentinel LDK Run-time environment, do the following:

  1. Upload the aksusbd-8.52.1.tar environment to the

  2. Server
  3. server on which the license will be used.

  4. Unpack the archive.

    Code Block
    sudo tar xvf ~/aksusbd-8.52.1.tar -C ~
  5. Run the installation.

    Code Block
    sudo ./aksusbd-8.52.1/dinst /home/<Username>/aksusbd-8.52.1

Installation of the Sentinel LDK Run-time environment is complete. Together with the Sentinel LDK Run-time environment, a standard demo license for searching the recognized license plates in the archive will be installed. When you use this license, note that there is a 30-second delay between the recognition of a license plate and the occurrence of a corresponding event (see Vehicle license plate recognition and search).

Note
titleAttention!

Demo mode of the License Plate Recognition plate recognition VT isn't allowed on virtual machines.

Info
titleNote

If the environment is successfully installed, the Sentinel Admin Control Center web application opens in the web browser at http://127.0.0.1:1947/. Information about the installed demo license will be displayed on the Sentinel Keys tab.

Installing a hardware key

Note
titleAttention!

Before you install a hardware key, you must install the Sentinel LDK Run-time environment.

To ensure the hardware key operation, it is necessary to connect the hardware key to the Server server where you plan to use the License Plate Recognition plate recognition VT. If the Sentinel LDK Run-time environment is successfully installed, the license is automatically recognized by Axxon One, and it is ready to use.

Info
titleNote

Information about the installed hardware key is displayed in the Sentinel Admin Control Center web application, on the Sentinel Keys tab.

The installation of the hardware key is now complete.

Installing a software key

Note
titleAttention!

Before you install a software key, you must install the Sentinel LDK Run-time environment.

To install a software key, do the following:

  1. Upload the hasp_SDK_2.14.tar.gz environment to the
  2. Server
  3. server on which the software key will be used.
  4. Unzip the archive.

    Code Block
    sudo tar zxvf ~/hasp_SDK_2.14.tar.gz -C ~
  5. Create a snapshot of the

  6. Server
  7. server hardware. A snapshot is a file with the c2v extension. The created file fingerprint.c2v will be located in the current directory.

    Code Block
    cd ~/hasp/bin
    1. for 64-bit system:

      Code Block
      sudo ./hasp_update_x86_64 f > fingerprint.c2v
    2. for 32-bit system:

      Code Block
      sudo ./hasp_update f > fingerprint.c2v
  8. Submit the created file with the c2v extension to the AxxonSoft manager.

  9. Get a v2c file from the AxxonSoft manager. The received file will contain license information that will be available for use only on your

  10. Server
  11. server.

  12. Activate the license to install a software key.

    1. for 64-bit system:

      Code Block
      cd ./hasp/bin
      Code Block
      sudo ./hasp_update_x86_64 u <Received file with the v2c extension>
    2. for 32-bit system:

      Code Block
      cd ./hasp/bin
      Code Block
      sudo ./hasp_update u <Received file with the v2c extension>
  13. After you activate the license, restart the hasplmd service:

    Code Block
    sudo systemctl stop hasplmd.service
    Code Block
    sudo systemctl start hasplmd.service

    or restart the

  14. Server
  15. server:

    Code Block
    sudo reboot


Info
titleNote

Information about the installed software key is displayed in the Sentinel Admin Control Center web application, on the Sentinel Keys tab.

The installation of the software key is now complete.

Updating the license

To update the license, do the following:

  1. Create a snapshot of the

  2. Server
  3. server hardware. A snapshot is a file with the c2v extension. The created file haspinfo.c2v will be located in the current directory.

    Code Block
    cd ~/hasp/bin
    1. for 64-bit system:

      Code Block
      sudo ./hasp_update_x86_64 i <HASP ID> > haspinfo.c2v

      where <HASP ID>

      Code Block
      hasp_update_x86_64 lf
    2. for 32-bit system:

      Code Block
      sudo ./hasp_update i <HASP ID> > haspinfo.c2v

      where <HASP ID>

      Code Block
      hasp_update lf
  4. Submit the created file with the c2v extension to the AxxonSoft manager.

  5. Get a v2c file from the AxxonSoft manager. The received file will contain license information that will be available for use only on your

  6. Server
  7. server.

  8. Update the license.

    Code Block
    cd ./hasp/bin
    1. for 64-bit system:

      Code Block
      sudo ./hasp_update_x86_64 u <Received file with the v2c extension>
    2. for 32-bit system:

      Code Block
      sudo ./hasp_update u <Received file with the v2c extension>
  9. After you update the license, restart the hasplmd service:

    Code Block
    sudo systemctl stop hasplmd.service
    Code Block
    sudo systemctl start hasplmd.service

    or restart the

  10. Server
  11. server:

    Code Block
    sudo reboot


Info
titleNote

Information about the updated license is displayed in the Sentinel Admin Control Center web application, on the Sentinel Keys tab.

The update of the license is now complete.

Removing a license

To remove a license, do the following:

  1. Open the contents of the c2v file that was created for the installation, activation, or update of the current license. The license ID in the body of the key is indicated as <hasp id="Identifier of the current license">.
  2. Delete the v2c file that has the same ID as the c2v file located in /var/hasplm/installed/107392/.
  3. Stop the processes.

    Code Block
    killall aksusbd
    killall haspmld
  4. Start the services.

    Code Block
    haspmld -s
    aksusbd
  5. After you remove the license, restart hasplmd service:

    Code Block
    sudo systemctl stop hasplmd.service
    Code Block
    sudo systemctl start hasplmd.service

    or restart the Server:

    Code Block
    sudo reboot

The removal of the license is now complete.

Checking a license

You can check the current license status on the Serverserver. To do this, open the the Sentinel Admin Control Center web application. The license information is displayed on the Features tab.

If there is no web browser on the Serverserver, execute the following two commands in the console one by one:

Code Block
curl -X POST -d 'accremote=1' http://localhost:1947/_int_/config.html
wget --post-data 'accremote=1' http://localhost:1947/_int_/config.html

...