한국어

IPPBX/GW

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://www.rosehosting.com/blog/how-to-install-asterisk-on-centos-7/

In this tutorial we will show you how to install Asterisk on a CentOS 7 VPS. Asterisk is an open source software implementation of a telephone private branch exchange (PBX) and includes many features such as: voice mail, conference calling, call recorder, automatic call distribution, interactive voice response, realtime monitoring and debugging console etc.

Let’s start the installation. Make sure your server OS is fully up-to-date:

yum clean all
yum update

Install all required packages and dependencies on your Asterisk VPS:

yum groupinstall core base "Development Tools"
yum install lynx bison php-mbstring php-pear php-gd php-xml libsepol-devel libtiff-devel openssl-devel subversion e2fsprogs-devel keyutils-libs-devel krb5-devel libogg libogg-devel libtool libtool-ltdl-devel kernel-headers kernel-devel tftp-server ncurses-devel sendmail sendmail-cf sox newt-devel libtiff-devel subversion doxygen texinfo mysql-connector-odbc unixODBC-devel sox gnutls-devel ncurses-devel net-snmp-devel neon-devel uuid-devel libuuid-devel audiofile-devel gtk2-devel speex-devel gsm-devel sqlite-devel perl-DateManip spandsp-devel freetds-devel iksemel-devel corosynclib-devel lua-devel radiusclient-ng-devel libxslt-devel portaudio-devel libical-devel gmime-devel bluez-libs-devel jack-audio-connection-kit-devel libedit-devel jansson-devel libsrtp-devel

Install pjproject

cd /opt 
git clone git://github.com/asterisk/pjproject pjproject 
cd pjproject/ 
./configure --libdir=/usr/lib64 --prefix=/usr --enable-shared --disable-sound --disable-resample --disable-video --disable-opencore-amr
make dep 
make 
make install 
ldconfig

Install SRTP

cd /opt  
wget https://downloads.sourceforge.net/project/srtp/srtp/1.4.4/srtp-1.4.4.tgz 
tar zxvf srtp-1.4.4.tgz
cd srtp 
autoconf 
./configure CFLAGS=-fPIC --prefix=/usr  
make 
make runtest
make install
ldconfig

Install jansson

cd /opt 
wget http://www.digip.org/jansson/releases/jansson-2.7.tar.gz
tar zvxf jansson-2.7.tar.gz 
cd jansson-2.7
autoreconf -i
./configure --prefix=/usr/ --libdir=/usr/lib64
make  
make install 
ldconfig

Install Lame

cd /opt 
wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
tar zxvf lame-3.99.5.tar.gz 
cd lame-3.99.5
./configure 
make 
make install

Install Asterisk

Add a new user named ‘asterisk’:

adduser asterisk -M -c "Asterisk User"
cd /opt
wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz
tar zxvf asterisk-13-current.tar.gz
cd asterisk-13*
contrib/scripts/install_prereq install
./configure --libdir=/usr/lib64
contrib/scripts/get_mp3_source.sh
make menuselect

Choose which modules to build, select ‘Save & Exit’ and continue with the installation:

make 
make install 
make config 
ldconfig
chkconfig asterisk off

Set permissions of certain files and directories related to Asterisk:

chown asterisk. /var/run/asterisk
chown asterisk. -R /etc/asterisk
chown asterisk. -R /var/{lib,log,spool}/asterisk
chown asterisk. -R /usr/lib64/asterisk
chown asterisk. -R /var/www/

Edit the PHP configuration file and set the upload_max_size value to 128 MB or higher.

vi /etc/php.ini
upload_max_filesize = 128M

Edit the main Apache configuration file (/etc/httpd/conf/httpd.conf) and change user and group from ‘apache’ to ‘asterisk’. Also, change ‘AllowOverride None’ directive to ‘AllowOverride All’.
Restart the Apache web server for the changes to take effect:

systemctl restart httpd.service

Log in to the MariaDB server using the ‘root’ user login credentials and create new user and two databases:

mysql -u root -p
MariaDB [(none)]> CREATE DATABASE asterisk;
MariaDB [(none)]> CREATE DATABASE asteriskcdrdb;
MariaDB [(none)]> CREATE USER 'asterisk'@'localhost' IDENTIFIED BY 'Y0uR-PASSW0RD';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON asterisk.* TO 'asterisk'@'localhost';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON asteriskcdrdb.* TO 'asterisk'@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> quit;

Do not forget to replace ‘Y0uR-PASSW0RD’ with a strong password.

 

Enable log file rotation:

vi /etc/logrotate.d/asterisk

add the following lines:

/var/log/asterisk/queue_log
/var/spool/mail/asterisk
/var/log/asterisk/messages
/var/log/asterisk/event_log
/var/log/asterisk/full {
        weekly
        missingok
        rotate 5
        notifempty
        sharedscripts
        create 0640 asterisk asterisk
        postrotate
        /usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null || true
        endscript
}

That is it. The Asterisk and installation is complete.

Of course you don’t have to do any of this if you use one of our Linux VPS Hosting services, in which case you can simply ask our expert Linux admins to install Asterisk for you. They are available 24×7 and will take care of your request immediately.

PS. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.

번호 제목 글쓴이 날짜 조회 수
98 php memory and filesize increase upload wav admin 2019.06.25 5064
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6077
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12350
95 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20739
94 how-to-freepbx-13-firewall-setup admin 2017.08.14 20780
93 Configuring Your PBX admin 2017.08.17 20794
92 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20820
91 Google letter agi admin 2017.08.26 20835
90 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20845
89 /sbin/service httpd start stop web start stop admin 2017.08.16 20905
88 SUGAR CRM admin 2017.08.23 20908
87 thirdlane PBX price admin 2017.08.23 20912
86 IVR actions asterisk admin 2017.08.31 20921
85 download Installing+AsteriskNOW admin 2017.08.25 20959
84 asterisk XactView V3-CRM Widget admin 2017.08.24 20974
83 FreePBX 12 – Getting Started Guide admin 2017.08.29 21032
82 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 21038
81 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 21038
80 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21052
79 User Control Panel (UCP) 14+ admin 2017.08.23 21056
78 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21062
77 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21080
76 Asterisk 13 Debian 8 admin 2015.11.13 21083
75 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21109
74 Text to Speech User Guide admin 2017.08.24 21158
73 iptables for asterisk simple example configuration admin 2017.08.31 21187
72 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21189
71 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21221
70 Top 10 greater worker admin 2017.08.26 21227
69 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21235
68 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21248
67 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21249
66 TwistedWave Online A browser-based audio editor admin 2017.08.25 21309
65 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21311
64 Configuring an Asterisk server admin 2015.05.05 21332
63 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21343
62 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21355
61 OPUS and VP9 Bitrates admin 2017.08.17 21396
60 Insert into dialplan Asterisk admin 2017.08.26 21398
59 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21404
58 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21438
57 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21442
56 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21453
55 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21480
54 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21488
53 fax licenses Asterisk admin 2015.05.05 21500
52 FreePBX – Custom FAX to email admin 2015.05.05 21511
51 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21513
50 Asterisk 설치 준비 admin 2015.11.15 21534
49 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21544
48 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21578
47 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21602
46 FaxServer using Asterisk admin 2015.05.05 21603
45 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21606
44 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21628
43 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21650
42 Asterisk A simple IVR admin 2015.05.05 21651
41 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21654
40 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21663
39 Installing SNG7 Official Distro admin 2017.08.17 21731
38 FAX over IP sofware admin 2015.05.05 21736
37 T.38 Fax Gateway Asterisk admin 2015.05.05 21738
36 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21791
35 Incoming Fax Handling admin 2015.05.05 21810
34 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21819
33 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21824
32 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 21961
31 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 21971
30 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 21997
29 Dialplan handler routines allow customization admin 2017.08.26 22023
28 AGI asterisk gateway interface synopsis admin 2017.08.26 22026
27 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22054
26 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22057
25 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22081
24 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22092
23 Playing text to speech inside read function in asterisk admin 2017.08.28 22166
22 asterisk dialplan 설명 admin 2017.08.16 22187
21 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22210
20 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22486
19 Text to speech for asterisk using Google Translate admin 2017.08.24 22498
18 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22563
17 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 22881
16 Installing AsteriskNOW Official Distro admin 2015.05.05 22971
15 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 23000
14 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23219
13 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23628
12 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23730
11 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24150
10 Asterisk Quick Start Guide admin 2015.05.05 24362
9 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24640
8 A2Billing v2 Install Guide admin 2015.05.05 24935
7 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25146
6 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25772
5 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26389
» How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27737
3 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28545
2 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 30865
1 Make Your Own IVR with Asterisk admin 2017.08.26 34813