How to install Asterisk 13 on Centos 7
This guide will show you how to install the most recent version of Asterisk 13 under Centos 7.
It’s a virgin Asterisk installation, so without a frontend, cdr database, etc.
Ok, let’s see the required steps:
yum groupinstall –y Development Tools
yum install –y ncurses-dev uuid-devel libuuid-devel libxml2-devel sqlite-devel bison subversion git-core
It’s the time to grab libjansson and compile it from source:
cd /usr/src/
git clone https://github.com/akheron/jansson.git
cd jansson
autoreconf –i
./configure –prefix=/usr/
make && make install
Now we can download the most recent version of Asterisk 13 and compile:
cd /usr/src/
wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz
tar –xzvf asterisk-13-current.tar.gz
cd asterisk-13.17.1/
./bootstrap.sh
./configure
make && make install && make samples
make config && make samples
chkconfig asterisk on
Let's start asterisk from the command line:
safe_asterisk
Thats it, now you have installed Asterisk 13 on Centos 7.
Your suggestions are always welcome! We want to say thank you for your continued liking and sharing. If you haven’t liked this post yet, you may do that by hitting the buttons just below. If you are a blogger and you appreciate the hard work, whether or not you copied this post, we implore you to kindly link back this post here, you may do it anyhow you can. We consider that a great contribution.
laszlo
Latest posts by laszlo (see all)
- How to install Asterisk 13 on Centos 7 - 2017/09/05
- BYOB – Tomorrow’s Communication Tool - 2014/03/19
- Simple Tips to Improve Your Office - 2014/01/22
Recent Comments