Versions Compared

Key

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

...

AxxonData — local version of cloud service AxxonNet. AxxonData is compatible with Axxon NextOneversion 41.0.4 .2 or higher.and with the Axxon Next archive product.

Docker installation

Info
titleNote

This installation description is relevant for Ubuntu 18.04. Installation of other OS versions may be slightly different.

...

  1. Download the distribution archive and unpack it into any folder.

  2. The default access protocol is HTTPS, which requires manual installation of certificates on client computers in local cloud. If it is necessary to switch to HTTP, run the following command:

    Code Block
    sudo ./http_https_switcher.sh HTTP

    HTTP is an insecure protocol that does not require a certificate to be installed. To switch back to HTTPS, run the following command:

    Code Block
    sudo ./http_https_switcher.sh HTTPS


    Note
    titleAttention!

    If you install AxxonData using the HTTPS access protocol, then it will not be possible to upgrade it to HTTP later.

    HTTP protocol is available starting from Axxon

    Next 4

    One 1.

    6

    9.

    1.


  3. In the terminal, execute the command to grant execution rights to the scripts (load.sh, once.sh, run.sh, stop.sh).

    Code Block
    sudo chmod +x *.sh


  4. Run the once.sh script.

    Code Block
    sudo ./once.sh


  5. Run the load.sh script.

    Code Block
    sudo ./load.sh


  6. Create the Docker services.

    Code Block
    sudo ./run.sh


  7. Check the services status.

    Code Block
    sudo docker service ls

    In the REPLICAS column, all values should be displayed as 1/1.

  8. Add the vmscloud.local domain to the /etc/hosts file.
  9. Install the root certificate. The certificate should be in PEM format with a .crt extension.

    Code Block
    $ mkdir /usr/share/ca-certificates/extra
    $ cp rootCA.pem /usr/share/ca-certificates/extra/rootCA.crt
    $ dpkg-reconfigure ca-certificates

    If you use Firefox, then you should add the rootCA certificate to the Firefox Certificates yourself.

  10. Change the AxxonData address in the Axxon NextOne configuration:

    1. Stop the Server.
    2. In the infra.dictionar file, replace the address of the CLOUD_URL parameter with vmscloud.local. If Axxon NextOne Server is installed on Linux, the file will be located in the the /opt/AxxonSoft/AxxonNextAxxonOne/Dictionary.local directorylocal directory. If Axxon NextOne Server is installed on Windows, the file will be located in the Cthe C:\Program Files\AxxonSoft\AxxonNextAxxonOne\Dictionary.local directory. 
    3. Start the Server.
  11. On the Axxon NextOne Server, enter the address of the computer on which AxxonData is installed in the hosts file (C:\Windows\System32\drivers\etc or /etc/hosts). For example, 192.168.11.12 vmscloud.local. If AxxonData is installed on the same PC with Axxon Next One Server, you can skip this step.

...