Installing Asterisk 14 on Debian 8

In this article we will go over how to compile the asterisk 14 beta. There are a few new features to play with in this new release. I recommend bringing your system up to date before trying out the new version of asterisk. apt update && apt upgrade Now we need to make sure we … Read more

A2BIlling RESTFUL API: Installing and Configuring

We were recently hired to customize the core A2Billing project to meet some custom business rules and they wanted to use the A2Billing Restful API to integrate A2Billing with other systems in their environment.  There are a lot of blog posts on how to install and configure the core A2Billing project, but very little info … Read more

Autoscaling an Asterisk Cluster Using Docker Images – Part 1: Setting Up the Plumbing

Series Intro This series of articles will give you the information you need to standup a cluster of Asterisk servers using Docker containers, which we categorize as media servers where traffic will be load balanced by Kamailio. Part I Intro In this article we will configure the plumbing of the cluster and deploy a couple … Read more

Kamailio Quick Install Guide for v4.4

Kamailio 4.4 on CentOS 6. Are you looking for the CentOS 7.x version?  It can be found here Setup YUM Repository Install wget so we can pull down the rpm. yum install wget Let’s download the yum repo file for our Cent OS version. cd /etc/yum.repos.d/ wget http://download.opensuse.org/repositories/home:/kamailio:/v4.4.x-rpms/CentOS_6/home:kamailio:v4.4.x-rpms.repo Update system so yum is aware of … Read more

Creating a Docker file

The recommended way to create images for sharing is from a docker file. A docker file is essentially a script which can recreate the building of your image. We will go over how to create one for nginx on CentOS in this tutorial. Creating the docker file. It is recommended that each docker file is … Read more