ECHI Server for Avaya Aura CM
The AvayaECHI tool captures Avaya ECH data from CMS, then imports the data to database and Splunk. The raw data file is moved to archive directory once the data is sent to database or Splunk. Since the tool uses ODBC, database such as MySQL and MSSQL are supported. For more information, please visit the
AvayaECHI Programming Blog .
Create the Container
To create a container as daemon process, enter the following command
docker run -d -p 14016:14016 -v /var/log/avayaechi:/var/log/avayaechi -e TZ=Asia/Hong_Kong --name avayaechi avayaechi:tagnameCopy
To create a container as daemon process and store the ECH data to external database, enter the following command
docker run -d -p 14016:14016 -v /var/log/avayaechi:/var/log/avayaechi -e TZ=Asia/Hong_Kong --add-host=echiremotedb:192.168.1.20 --name avayaechi avayaechi:tagnameCopy
Port number description as following:
14016: Telnet port of AvayaECHI
If you host has enabled SELinux, add option --security-opt label=disable
Configure the AvayaECHI Parameters
Telnet to the AvayaECHI console, update the parameters by running the following command
setup
setup database
setup splunk
Restart the AvayaECHI Inside the Container
After the container is created, you can enter into the container by the following command
docker exec -i -t avayaechi bashCopy
You can restart the AvayaECHI program by the following command
/usr/local/upinget/stopavayaechi.shCopy