Page History
...
Download the distribution archive from the AxxonSoft website and unpack it into any folder.
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 title Attention! 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 One 1.9.
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
Run the once.sh script.
Code Block sudo ./once.sh
Run the load.sh script.
Code Block sudo ./load.sh
Create the Docker services.
Code Block sudo ./run.sh
Check the services status.
Code Block sudo docker service ls
In the REPLICAS column, all values should be displayed as 1/1.
- Add the vmscloudYou can change the default vmscloud.local domain to alias from the /etc/hosts file.
Install the root certificate. The certificate should be in PEM format with a .crt extension.
Code Block $sudo mkdir /usr/share/ca-certificates/extra $sudo cp rootCA.pem /usr/share/ca-certificates/extra/rootCA.crt $sudo dpkg-reconfigure ca-certificates
If you use Firefox, then you should add the rootCA certificate to the Firefox Certificates yourself.
Change the AxxonData address in the Axxon One configuration:
- Stop the Server.
- In the infra.dictionar file, replace the address of the CLOUD_URL parameter with vmscloud.local. If the Axxon One Server is installed on Linux, the file will be located in the /opt/AxxonSoft/AxxonOne/Dictionary.local directory. If Axxon One Server is installed on Windows, the file will be located in the C:\Program Files\AxxonSoft\AxxonOne\Dictionary.local directory.
- Start the Server.
- On the Axxon One 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 computer with the Axxon One Server, you can skip this step.
...