Go to documentation repository
Page History
...
Add the repositories by sequentially running the following commands:
Code Block echo 'deb http://download.axxonsoft.com/debian-repository stable main' | sudo tee -a /etc/apt/sources.list.d/axxonsoft.list echo 'deb http://download.axxonsoft.com/debian-repository stretch backports/main' | sudo tee -a /etc/apt/sources.list.d/axxonsoft.list wget --quiet -O - "http://download.axxonsoft.com/debian-repository/info@axxonsoft.com.gpg.key" | sudo apt-key --keyring /etc/apt/trusted.gpg.d/axxonsoft.gpg add - && sudo apt-get update
Note title Attention! If you install Axxon One on AstraLinux SE, then instead of commands from step 1, you should sequentially run the following commands:
Code Block echo 'deb http://download.axxonsoft.com/debian-repository stretch main backports/astra backports/main' | sudo tee -a /etc/apt/sources.list.d/axxonsoft.list wget --quiet -O - "http://download.axxonsoft.com/debian-repository/info@axxonsoft.com.gpg.key" | apt-key --keyring /etc/apt/trusted.gpg.d/axxonsoft.gpg add - && sudo apt-get update
- To download the packages, run one of the following commands:
Server only:
Code Block sudo apt install -d axxon-one
Server and Client:
Code Block sudo apt install -d axxon-one-client
By default, the files are downloaded to the /var/cache/apt/archives folder. If it is necessary to download the files to another folder, run the following command:
Code Block sudo apt-get install -d axxon-one -o=dir::cache=/home/user/Downloads/
In this case, the packages will be downloaded to the /home/user/Downloads folder.
Note title Attention! If you plan to install the downloaded packages on another computer with no Internet access, then the OS version on that computer should match the OS version of the computer on which the packages were downloaded.
To install the previously downloaded packages, run the command:
Code Block sudo dpkg -i /home/user/Downloads/*.deb || sudo apt-get install -f -y
where
user − user name;
Downloads − folder with downloaded packages.Expand title Package examples... Example of packages required to install the server side:
Panel axxon-drivers-pack_3.71_amd64.deb axxon-detector-pack_3.7_amd64.deb axxon-one-core_1.0.4_amd64.deb axxon-one_1.0.4_all.deb
Example of packages required to install the Server in the Failover mode:
Panel axxon-drivers-pack_3.71_amd64.deb axxon-detector-pack_3.7_amd64.deb axxon-one-core_1.0.4_amd64.deb axxon-one-raft_1.0.4_amd64.deb
Example of packages required for the Server and Client installation type:
Panel axxon-drivers-pack_3.71_amd64.deb axxon-detector-pack_3.7_amd64.deb axxon-one_1.0.4_all.deb axxon-one-core_1.0.4_amd64.deb axxon-one-client-bin_1.0.4_amd64.deb axxon-one-client_1.0.4_all.deb
Note title Attention! The folder should not contain other packages.
It is not allowed to simultaneously install the regular Server and the Failover Server.
During the installation, the installer will request the name of the domain for the Axxon One Server. If you leave this field blank, you can later specify it on the Client at the first connection.
- If necessary, you can change the Server configuration after installation (see Axxon One Server configuration change on Linux OS).
...