Installing the Software
After installing the dependency packages, install the OmniOperator software package on the management and compute nodes and set environment variables.
The BoostKit-omniop_1.8.0.zip package contains boostkit-omniop-operator-1.8.0-aarch64-openeuler.tar.gz, which is applicable to openEuler.
- Upload OmniOperator packages obtained in Obtaining Software Packages to the /opt/omni-operator/ directory on the management and compute nodes.
- Go to the /opt/omni-operator/ directory and decompress the packages.
1 2 3 4
cd /opt/omni-operator/ unzip BoostKit-omniruntime_1.6.0.zip unzip BoostKit-omniop_1.8.0.zip tar -zxvf boostkit-omniop-operator-1.8.0-aarch64-openeuler.tar.gz
- Copy OmniOperator files to the /opt/omni-operator/lib directory and set the permission on the software packages in the directory to 550.
1 2 3
cd /opt/omni-operator/boostkit-omniop-operator-1.8.0-aarch64 cp -r include libboostkit* boostkit-omniop* libsecurec.so /opt/omni-operator/lib/ chmod -R 550 /opt/omni-operator/lib/*
- Create a conf folder in the /opt/omni-operator directory and set the folder permission to 750.
1 2 3
cd /opt/omni-operator mkdir conf chmod 750 /opt/omni-operator/conf
- Create an omni.conf file in the conf folder and change the file permission to 640, which is required to set OmniOperator configuration items.
1 2 3
cd conf touch omni.conf chmod 640 omni.conf
- Delete redundant files from /opt/omni-operator.
1 2 3 4 5 6
mkdir -p /opt/omni-operator-bak mv /opt/omni-operator/lib /opt/omni-operator-bak mv /opt/omni-operator/conf /opt/omni-operator-bak rm -rf /opt/omni-operator cd /opt mv omni-operator-bak omni-operator
Parent topic: Installing the Feature