한국어

IPPBX/GW

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app



http://cc24x7.blogspot.kr/2017/04/vicidial-scratch-installation-centos-7.html




VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN

Update the system


Make sure you update the system first, then reboot if you installed an updated kernel.
yum -y update
reboot

Install the following in one go
yum install -y httpd php-common php-pdo php php-pear php-mbstring php-cli php-gd php-imap php-devel phpsysinfo php-mysql phpmyadmin mod_ssl mariadb mariadb-server mariadb-devel perl-DBI perl-DBD-MySQL perl-Digest-HMAC perl-YAML perl-ExtUtils-ParseXS perl-NetAddr-IP perl-Crypt-SSLeay perl-Curses perl-DBD-Pg perl-Module-ScanDeps perl-Text-CSV perl-HTML-Template perl-IO-Compress perl-Text-Glob perl-Jcode perl-Test-Script perl-Archive-Tar perl-Test-Base perl-OLE-Storage_Lite perl-Archive-Zip perl-Net-Server perl-Convert-ASN1 perl perl-Compress-Raw-Zlib perl-Digest-SHA1 perl-Data-Dumper perl-Error perl-ExtUtils-CBuilder perl-Test-Tester perl-Parse-RecDescent perl-Spiffy perl-IO-Zlib perl-Module-Build perl-HTML-Parser perl-Net-SSLeay perl-Proc-ProcessTable perl-TermReadKey perl-Term-ReadLine-Gnu perl-Digest-SHA perl-Tk perl-Net-SNMP perl-Test-NoWarnings perl-XML-Writer perl-Proc-PID-File perl-Compress-Raw-Bzip2 perl-libwww-perl perl-XML-Parser perl-File-Remove perl-Parse-CPAN-Meta perl-Set-Scalar perl-Probe-Perl perl-File-Which perl-Package-Constants perl-Module-Install perl-File-HomeDir perl-Spreadsheet-ParseExcel perl-Mail-Sendmail perl-Spreadsheet-XLSX asterisk-perl perl-version perl-Crypt-DES perl-URI perl-Net-Daemon perl-IO-stringy perl-YAML-Tiny perl-HTML-Tagset perl-Socket6 perl-BSD-Resource perl-PlRPC perl-IPC-Run3 perl-Text-CSV_XS perl-Unicode-Map perl-Module-CoreList perl-Net-Telnet perl-PAR-Dist perl-Date-Manip perl-JSON perl-Proc-Daemon perl-Spreadsheet-WriteExcel perl-rrdtool install lame screen sox ntp iftop subversion dahdi-linux-devel php-xcache


yum install make patch gcc gcc-c++ 
yum -y install ncurses-devel
yum install libxml2-devel
yum install sqlite-devel




Install the following in one go

systemctl enable httpd.service; systemctl enable mariadb.service; systemctl start httpd.service; systemctl start mariadb.service



Install Cpan

cpan -i String::CRC Tk::TableMatrix Net::Address::IP::Local Term::ReadLine::Gnu Spreadsheet::Read Net::Address::IPv4::Local RPM::Specfile Spreadsheet::XLSX Spreadsheet::ReadSXC

Install asterisk-perl

cd /usr/src/ 
wget http://download.vicidial.com/required-apps/asterisk-perl-0.08.tar.gz 
tar -zxf asterisk-perl-0.08.tar.gz 
cd asterisk-perl-0.08
perl Makefile.PL
make all 
make install



Asterisk Installation 11

mkdir /usr/src/asterisk 

cd /usr/src/asterisk


wget http://download.vicidial.com/required-apps/asterisk-11.22.0-vici.tar.gz
wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz

wget http://downloads.asterisk.org/pub/telephony/libpri/libpri-current.tar.gz

tar xzf asterisk-11.22.0-vici.tar.gz
tar xzf dahdi-linux-complete-current.tar.gz
tar xzf libpri-current.tar.gz



Install Dahdi 2.11

cd dahdi-linux-complete-2.11.1+2.11.1 
make all
make install
modprobe dahdi
modprobe dahdi_dummy

make config


Install libpri 1.6

cd /usr/src/asterisk/libpri-1.6.0
make clean
make
make install


Install Asterisk 

cd /usr/src/asterisk/asterisk-11.22.0
./configure --libdir=/usr/lib64 
make menuselect
make
make install
make samples
make config
chkconfig asterisk on

*Special Note [Select the MeetMe App] 








Create Database and import the server install settings 

mysql -p

CREATE USER 'cron'@'localhost' IDENTIFIED BY '1234';
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@'%' IDENTIFIED BY '1234';
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@localhost IDENTIFIED BY '1234';
GRANT RELOAD ON *.* TO cron@'%';
GRANT RELOAD ON *.* TO cron@localhost;
flush privileges;

quit


Install VICIdial

mkdir /usr/src/astguiclient
cd /usr/src/astguiclient
svn checkout svn://svn.eflo.net:3690/agc_2-X/trunk
cd trunk

perl install.pl

Note#
Select 11 when it asks for Asterisk Version and Copy Asterisk Settings Yes



Import the server install settings 

mysql -u root -p

SET GLOBAL connect_timeout=60;
use asterisk;

\. /usr/src/astguiclient/trunk/extras/MySQL_AST_CREATE_tables.sql
\. /usr/src/astguiclient/trunk/extras/first_server_install.sql
\. /usr/src/astguiclient/trunk/extras/sip-iax_phones.sql

quit



Extra settings on Terminal : cd /

/usr/share/astguiclient/ADMIN_area_code_populate.pl
cp /usr/src/astguiclient/trunk/extras/performance_test_leads.txt /usr/share/astguiclient/LEADS_IN/
/usr/src/astguiclient/trunk/bin/VICIDIAL_IN_new_leads_file.pl --forcelistid=107 --forcephonecode=1



Start Up Script

nano /etc/rc.d/rc.local

Copy the below and press Ctrl + O

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

# OPTIONAL enable ip_relay(for same-machine trunking and blind monitoring)
/usr/share/astguiclient/ip_relay/relay_control start 2>/dev/null 1>&2

# Disable console blanking and powersaving
/usr/bin/setterm -blank
/usr/bin/setterm -powersave off
/usr/bin/setterm -powerdown

### start up the MySQL server
/etc/init.d/mysqld start

### start up the apache web server
/etc/init.d/httpd start

### roll the Asterisk logs upon reboot
/usr/share/astguiclient/ADMIN_restart_roll_logs.pl

### clear the server-related records from the database
/usr/share/astguiclient/AST_reset_mysql_vars.pl

### load dahdi drivers
modprobe dahdi
/usr/sbin/dahdi_cfg -vvvvvvvvvvvvv

### sleep for 20 seconds before launching Asterisk
sleep 20

### start up asterisk

/usr/share/astguiclient/start_asterisk_boot.pl




Setting up the Cron Tab

crontab -e

Copy the below and :wq

### recording mixing/compressing/ftping scripts
#0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_mix.pl
0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_mix.pl --MIX
0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_VDonly.pl
1,4,7,10,13,16,19,22,25,28,31,34,37,40,43,46,49,52,55,58 * * * * /usr/share/astguiclient/AST_CRON_audio_2_compress.pl --GSM
#2,5,8,11,14,17,20,23,26,29,32,35,38,41,44,47,50,53,56,59 * * * * /usr/share/astguiclient/AST_CRON_audio_3_ftp.pl --GSM

### keepalive script for astguiclient processes
* * * * * /usr/share/astguiclient/ADMIN_keepalive_ALL.pl --cu3way

### kill Hangup script for Asterisk updaters
* * * * * /usr/share/astguiclient/AST_manager_kill_hung_congested.pl

### updater for voicemail
* * * * * /usr/share/astguiclient/AST_vm_update.pl

### updater for conference validator
* * * * * /usr/share/astguiclient/AST_conf_update.pl

### flush queue DB table every hour for entries older than 1 hour
11 * * * * /usr/share/astguiclient/AST_flush_DBqueue.pl -q

### fix the vicidial_agent_log once every hour and the full day run at night
33 * * * * /usr/share/astguiclient/AST_cleanup_agent_log.pl
50 0 * * * /usr/share/astguiclient/AST_cleanup_agent_log.pl --last-24hours
## uncomment below if using QueueMetrics
#*/5 * * * * /usr/share/astguiclient/AST_cleanup_agent_log.pl --only-qm-live-call-check

## uncomment below if using Vtiger
#1 1 * * * /usr/share/astguiclient/Vtiger_optimize_all_tables.pl --quiet

### updater for VICIDIAL hopper
* * * * * /usr/share/astguiclient/AST_VDhopper.pl -q

### adjust the GMT offset for the leads in the vicidial_list table
1 1,7 * * * /usr/share/astguiclient/ADMIN_adjust_GMTnow_on_leads.pl --debug

### reset several temporary-info tables in the database
2 1 * * * /usr/share/astguiclient/AST_reset_mysql_vars.pl

### optimize the database tables within the asterisk database
3 1 * * * /usr/share/astguiclient/AST_DB_optimize.pl

## adjust time on the server with ntp
30 * * * * /usr/sbin/ntpdate -u pool.ntp.org 2>/dev/null 1>&2

### VICIDIAL agent time log weekly and daily summary report generation
2 0 * * 0 /usr/share/astguiclient/AST_agent_week.pl
22 0 * * * /usr/share/astguiclient/AST_agent_day.pl

### VICIDIAL campaign export scripts (OPTIONAL)
#32 0 * * * /usr/share/astguiclient/AST_VDsales_export.pl
#42 0 * * * /usr/share/astguiclient/AST_sourceID_summary_export.pl

### remove old recordings more than 7 days old
#24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE -maxdepth 2 -type f -mtime +7 -print | xargs rm -f

### roll logs monthly on high-volume dialing systems
#30 1 1 * * /usr/share/astguiclient/ADMIN_archive_log_tables.pl

### remove old vicidial logs and asterisk logs more than 2 days old
28 0 * * * /usr/bin/find /var/log/astguiclient -maxdepth 1 -type f -mtime +2 -print | xargs rm -f
29 0 * * * /usr/bin/find /var/log/asterisk -maxdepth 3 -type f -mtime +2 -print | xargs rm -f
30 0 * * * /usr/bin/find / -maxdepth 1 -name "screenlog.0*" -mtime +4 -print | xargs rm -f

### cleanup of the scheduled callback records
25 0 * * * /usr/share/astguiclient/AST_DB_dead_cb_purge.pl --purge-non-cb -q

### GMT adjust script - uncomment to enable
#45 0 * * * /usr/share/astguiclient/ADMIN_adjust_GMTnow_on_leads.pl --list-settings

### Dialer Inventory Report
1 7 * * * /usr/share/astguiclient/AST_dialer_inventory_snapshot.pl -q --override-24hours

### inbound email parser
* * * * * /usr/share/astguiclient/AST_inbound_email_parser.pl





Finally Reboot

reboot


Now verify the Installation

screen -ls
There are screens on:
        2301.ASTVDauto  (Detached)
        2125.asterisk   (Detached)
        2292.ASTupdate  (Detached)
        2307.ASTVDadapt (Detached)
        2120.astshell20131221211922     (Detached)
        2304.ASTVDremote        (Detached)
        2310.ASTfastlog (Detached)
        2298.ASTlisten  (Detached)
        2295.ASTsend    (Detached)
9 Sockets in /var/run/screen/S-root.

Comments

  1. Error while installing dahdi

    /linux/drivers/dahdi/firmware'
    You do not appear to have the sources for the 3.10.0-514.16.1.el7.x86_64 kernel installed.
    make[1]: *** [modules] Error 1

    REPLY

Post a Comment

Thanks for your comment! :)

번호 제목 글쓴이 날짜 조회 수
98 php memory and filesize increase upload wav admin 2019.06.25 7865
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 8836
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 15324
95 Configuring Your PBX admin 2017.08.17 23409
94 how-to-freepbx-13-firewall-setup admin 2017.08.14 23438
93 Asterisk dialolan detail explan good easy clean admin 2017.08.26 23460
92 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 23603
91 asterisk XactView V3-CRM Widget admin 2017.08.24 23687
90 IVR actions asterisk admin 2017.08.31 23699
89 Asterisk 13 Debian 8 admin 2015.11.13 23763
88 /sbin/service httpd start stop web start stop admin 2017.08.16 23765
87 Google letter agi admin 2017.08.26 23782
86 User Control Panel (UCP) 14+ admin 2017.08.23 23814
85 FreePBX 12 – Getting Started Guide admin 2017.08.29 23834
84 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 23882
83 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 23885
82 download Installing+AsteriskNOW admin 2017.08.25 23890
81 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 23894
80 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 23940
79 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 23965
78 SUGAR CRM admin 2017.08.23 23984
77 thirdlane PBX price admin 2017.08.23 24014
76 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 24019
75 Text to Speech User Guide admin 2017.08.24 24031
74 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 24038
73 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 24050
72 Configuring an Asterisk server admin 2015.05.05 24063
71 asterisk IVR 쉽게 설정하기 admin 2017.08.16 24090
70 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 24113
69 OPUS and VP9 Bitrates admin 2017.08.17 24113
68 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 24185
67 Top 10 greater worker admin 2017.08.26 24197
66 TwistedWave Online A browser-based audio editor admin 2017.08.25 24251
65 FreePBX – Custom FAX to email admin 2015.05.05 24333
64 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 24337
63 Insert into dialplan Asterisk admin 2017.08.26 24343
62 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 24364
61 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 24388
60 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 24400
59 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 24400
58 Asterisk 설치 준비 admin 2015.11.15 24406
57 FaxServer using Asterisk admin 2015.05.05 24410
56 Generic Asterisk SIP Configuration Guide admin 2015.05.05 24422
55 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 24443
54 Asterisk A simple IVR admin 2015.05.05 24447
53 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 24453
52 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 24465
51 fax licenses Asterisk admin 2015.05.05 24466
50 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 24470
49 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 24499
48 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 24505
47 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 24506
46 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 24520
45 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 24524
44 FAX over IP sofware admin 2015.05.05 24564
43 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 24668
42 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 24704
41 T.38 Fax Gateway Asterisk admin 2015.05.05 24709
40 Incoming Fax Handling admin 2015.05.05 24732
39 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 24754
38 iptables for asterisk simple example configuration admin 2017.08.31 24755
37 Installing SNG7 Official Distro admin 2017.08.17 24790
36 AGI asterisk gateway interface synopsis admin 2017.08.26 24821
35 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 24836
34 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 24837
33 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 24849
32 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 24870
31 Playing text to speech inside read function in asterisk admin 2017.08.28 24949
30 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 24954
29 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 25022
28 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 25060
27 Dialplan handler routines allow customization admin 2017.08.26 25111
26 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 25120
25 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 25154
24 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 25173
23 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 25230
22 asterisk dialplan 설명 admin 2017.08.16 25265
21 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 25312
20 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 25585
19 Text to speech for asterisk using Google Translate admin 2017.08.24 25643
18 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 25650
17 Installing AsteriskNOW Official Distro admin 2015.05.05 25878
16 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 26120
15 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 26330
» VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 26354
13 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 26454
12 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 27026
11 List of 5 Open Source Call Center Software Programs admin 2017.08.31 27193
10 Asterisk Quick Start Guide admin 2015.05.05 27228
9 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 27597
8 A2Billing v2 Install Guide admin 2015.05.05 28224
7 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 29036
6 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 29465
5 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 30281
4 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 30650
3 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 31887
2 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 33746
1 Make Your Own IVR with Asterisk admin 2017.08.26 38368