These instructions are only intended as a cheatsheet for developers. There are alternate ways to do many of these actions that may or may not be documented
sudo yum install https://senzing-staging-yum.s3.amazonaws.com/senzingstagingrepo-1.0.0-1.noarch.rpm
sudo yum install https://senzing-staging-yum.s3.amazonaws.com/senzingstagingrepo-2.0.0-1.noarch.rpm
- Use yum to verify the repo package is installed
sudo yum list installed | grep senzing
sudo yum list available | grep senzing
sudo yum list --showduplicates <SENZING_PACKAGE>
sudo yum list --showduplicates senzingapi-runtime
sudo yum list installed | grep senzing
sudo yum install <SENZING_PACKAGE>
Example:
sudo yum install senzingapi-runtime
sudo yum install <SENZING_PACKAGE>-<MAJOR>.<MINOR>.<PATCH>*
NOTE: This will install the latest version of a particular MAJOR
.MINOR
.PATCH
version.
Yum will use the latest build version
Example:
If there are two senzingapi-runtime versions available:
senzingapi-runtime.x86_64 3.9.0-24068
senzingapi-runtime.x86_64 3.9.0-24071
The following command would install the higher version: 3.9.0-24071
sudo yum install senzingapi-runtime-3.9.0*
sudo yum install <SENZING_PACKAGE>-<MAJOR>.<MINOR>.<PATCH>-<BUILD_NUMBER>
Example:
sudo yum install senzingapi-runtime-3.9.0-24068
sudo yum deplist <SENZING_PACKAGE>
Example:
sudo yum deplist senzingapi-runtime
sudo yum remove <SENZING_PACKAGE>
Example:
sudo yum remove senzingapi-runtime