한국어

IPPBX/GW

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

    
페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app



https://www.powerpbx.org/content/fusionpbx-v4-freeswitch-v16-centos-v7-install-guide-v1.1


Fusionpbx is a full featured mult-tenant GUI for Freeswitch.  This guide covers the installation of Fusionpbx and Freeswitch® with MariaDB and Apache on CentOS v7. 

Tested on:

CentOS v7
Freeswitch v1.6
FusionPBX v4
MariaDB v5.5

Assumptions:

Console text mode (multi-user.target)
Installation done as root user (#)

Install Prerequisites

Ensure all required packages are installed. 

yum install epel-release
yum update
yum install git nano httpd mariadb-server php php-common php-pdo php-soap php-xml php-xmlrpc php-mysql php-cli php-imap php-mcrypt mysql-connector-odbc memcached ghostscript libtiff-devel libtiff-tools at

Disable Selinux

Check status

sestatus

If not disabled, set SELINUX=disabled in /etc/selinux/config.  Requires reboot for changes to take effect.

sed -i 's/\(^SELINUX=\).*/\SELINUX=disabled/' /etc/selinux/config

Timezone

## FIND YOUR TIMEZONE
tzselect

## SET TIMEZONE EXAMPLE
timedatectl set-timezone America/Vancouver

## CHECK TIMEZONE
​timedatectl status

Reboot

To ensure the changes/additions are at their default states.

reboot

Install

Freeswitch

rpm -Uvh http://files.freeswitch.org/freeswitch-release-1-6.noarch.rpm
yum install freeswitch-config-vanilla freeswitch-sounds* freeswitch-lang* freeswitch-lua freeswitch-xml-cdr

Database

systemctl start mariadb
mysql

From mysql prompt >

CREATE DATABASE freeswitch;
GRANT ALL PRIVILEGES ON freeswitch.* TO fusionpbx@localhost IDENTIFIED BY 'somepassword';
flush privileges;
\q

ODBC

nano /etc/odbc.ini
[freeswitch]
Driver   = MySQL
SERVER   = 127.0.0.1
PORT     = 3306
DATABASE = freeswitch
OPTION  = 67108864
Socket   = /var/lib/mysql/mysql.sock
threading=0
MaxLongVarcharSize=65536

[fusionpbx]
Driver   = MySQL
SERVER   = 127.0.0.1
PORT     = 3306
DATABASE = fusionpbx
OPTION  = 67108864
Socket   = /var/lib/mysql/mysql.sock
threading=0

Test odbc driver

odbcinst -s -q

Test odbc connection

isql -v freeswitch fusionpbx somepassword 

quit

Download Fusionpbx

There are fixes and enhancements in our fork so that it will install properly on MySQL.  The developer appears to have addressed them now, so if you want the latest updates you can install from https://github.com/fusionpbx/fusionpbx

Make sure the "." is included at the end of the git clone command.  That tells git to clone into the current directory instead of creating a /fusionpbx subdirectory.

cd /var/www/html
git clone -b 4.2 https://github.com/powerpbx/fusionpbx.git .

Copy conf Directory

mv /etc/freeswitch /etc/freeswitch.orig
mkdir /etc/freeswitch
cp -R /var/www/html/resources/templates/conf/* /etc/freeswitch

Apache config

# Add user freeswitch to group apache to avoid problems with /var/lib/php/sessions directory 
usermod -a -G apache freeswitch

# Set http server to run as same user/group as Freeswitch
sed -i "s/User apache/User freeswitch/" /etc/httpd/conf/httpd.conf
sed -i "s/Group apache/Group daemon/" /etc/httpd/conf/httpd.conf

# Set webserver to obey any .htaccess files in /var/www/html and subdirs 
sed -i ':a;N;$!ba;s/AllowOverride None/AllowOverride All/2' /etc/httpd/conf/httpd.conf

Set ownership and permissions

# Ownership
chown -R freeswitch.daemon /etc/freeswitch /var/lib/freeswitch \
/var/log/freeswitch /usr/share/freeswitch /var/www/html

# Directory permissions to 770 (u=rwx,g=rwx,o='')
find /etc/freeswitch -type d -exec chmod 770 {} \;
find /var/lib/freeswitch -type d -exec chmod 770 {} \;
find /var/log/freeswitch -type d -exec chmod 770 {} \;
find /usr/share/freeswitch -type d -exec chmod 770 {} \;
find /var/www/html -type d -exec chmod 770 {} \;

# File permissions to 664 (u=rw,g=rw,o=r)
find /etc/freeswitch -type f -exec chmod 664 {} \;
find /var/lib/freeswitch -type f -exec chmod 664 {} \;
find /var/log/freeswitch -type f -exec chmod 664 {} \;
find /usr/share/freeswitch -type f -exec chmod 664 {} \;
find /var/www/html -type f -exec chmod 664 {} \;

Systemd config

nano /etc/systemd/system/freeswitch.service
[Unit]
Description=FreeSWITCH
Wants=network-online.target
After=syslog.target network-online.target
After=mariadb.service httpd.service

[Service]
Type=forking
User=freeswitch
ExecStartPre=/usr/bin/mkdir -m 0750 -p /run/freeswitch
ExecStartPre=/usr/bin/chown freeswitch:daemon /run/freeswitch
WorkingDirectory=/run/freeswitch
PIDFile=/run/freeswitch/freeswitch.pid
EnvironmentFile=-/etc/sysconfig/freeswitch
ExecStart=/usr/bin/freeswitch -ncwait -nonat $FREESWITCH_PARAMS
ExecReload=/usr/bin/kill -HUP $MAINPID

[Install]
WantedBy=multi-user.target

Create the $FREESWITCH_PARAMS file for extra parameters.  If freeswitch was installed from RPM this will probably already exist.

nano /etc/sysconfig/freeswitch
## Type:                string
## Default:             ""
## Config:              ""
## ServiceRestart:      freeswitch
#
# if not empty: parameters for freeswitch
#
FREESWITCH_PARAMS=""

Enable services

systemctl daemon-reload
systemctl enable mariadb
systemctl enable httpd
systemctl enable freeswitch
systemctl enable memcached
systemctl restart freeswitch
Fix fs_cli

If fs_cli command does not work with freeswitch running change the following config line. 

nano /etc/freeswitch/autoload_configs/event_socket.conf.xml
<param name="listen-ip" value="127.0.0.1"/>
systemctl restart freeswitch
 
Reboot and browse to the public IP address of the server

 http://xx.xx.xx.xx 

to complete the install using the following:

Username: superadmin (or whatever you want)
Password: somepassword (use whatever you want)

Database Name: fusionpbx
Database Username: fusionpbx
Database Password: somepassword
Create Database Options: check "Create the database"
Create Database Username: root
Create Database Password : (leave blank unless you have already added a root password)

Post install tasks are mandatory.

Post Install

Lock down the database server

mysql_secure_installation
systemctl restart mariadb

Answer Y to everything.

Enable freeswitch database connection

This sets Freeswitch to use mysql instead of sqlite.

nano /etc/freeswitch/autoload_configs/switch.conf.xml
<param name="core-db-dsn" value="freeswitch:fusionpbx:somepassword" /> 
systemctl restart freeswitch

Change Voicemail to Email app configuration

nano +119 /etc/freeswitch/autoload_configs/switch.conf.xml
<param name="mailer-app" value="/usr/bin/php /var/www/html/secure/v_mailto.php"/>
                <param name="mailer-app-args" value="-t"/>
systemctl restart freeswitch

Configure firewall

firewall-cmd --permanent --zone=public --add-service={http,https}
firewall-cmd --permanent --zone=public --add-port={5060,5061,5080,5081}/tcp
firewall-cmd --permanent --zone=public --add-port={5060,5061,5080,5081}/udp
firewall-cmd --permanent --zone=public --add-port=16384-32768/udp
firewall-cmd --reload
번호 제목 글쓴이 날짜 조회 수
98 Make Your Own IVR with Asterisk admin 2017.08.26 38105
97 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 33481
96 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 31590
95 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 30385
94 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 30026
» Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 29148
92 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 28755
91 A2Billing v2 Install Guide admin 2015.05.05 27938
90 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 27331
89 Asterisk Quick Start Guide admin 2015.05.05 26954
88 List of 5 Open Source Call Center Software Programs admin 2017.08.31 26776
87 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 26760
86 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 26182
85 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 26090
84 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 26059
83 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 25835
82 Installing AsteriskNOW Official Distro admin 2015.05.05 25602
81 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 25374
80 Text to speech for asterisk using Google Translate admin 2017.08.24 25355
79 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 25289
78 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 25004
77 asterisk dialplan 설명 admin 2017.08.16 24980
76 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 24911
75 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 24908
74 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 24892
73 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 24859
72 Dialplan handler routines allow customization admin 2017.08.26 24811
71 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 24778
70 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 24704
69 Playing text to speech inside read function in asterisk admin 2017.08.28 24695
68 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 24680
67 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 24606
66 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 24582
65 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 24571
64 AGI asterisk gateway interface synopsis admin 2017.08.26 24568
63 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 24566
62 Installing SNG7 Official Distro admin 2017.08.17 24501
61 iptables for asterisk simple example configuration admin 2017.08.31 24480
60 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 24462
59 Incoming Fax Handling admin 2015.05.05 24449
58 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 24427
57 T.38 Fax Gateway Asterisk admin 2015.05.05 24401
56 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 24353
55 FAX over IP sofware admin 2015.05.05 24280
54 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 24274
53 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 24251
52 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 24232
51 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 24230
50 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 24221
49 fax licenses Asterisk admin 2015.05.05 24204
48 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 24202
47 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 24191
46 Asterisk A simple IVR admin 2015.05.05 24186
45 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 24160
44 Generic Asterisk SIP Configuration Guide admin 2015.05.05 24151
43 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 24150
42 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 24148
41 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 24143
40 FaxServer using Asterisk admin 2015.05.05 24143
39 Asterisk 설치 준비 admin 2015.11.15 24115
38 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 24111
37 FreePBX – Custom FAX to email admin 2015.05.05 24087
36 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 24082
35 Insert into dialplan Asterisk admin 2017.08.26 24063
34 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 24044
33 TwistedWave Online A browser-based audio editor admin 2017.08.25 23975
32 Top 10 greater worker admin 2017.08.26 23944
31 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 23926
30 OPUS and VP9 Bitrates admin 2017.08.17 23836
29 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 23827
28 asterisk IVR 쉽게 설정하기 admin 2017.08.16 23826
27 Configuring an Asterisk server admin 2015.05.05 23811
26 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 23792
25 SUGAR CRM admin 2017.08.23 23780
24 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 23772
23 Text to Speech User Guide admin 2017.08.24 23754
22 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 23741
21 thirdlane PBX price admin 2017.08.23 23727
20 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 23703
19 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 23659
18 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 23643
17 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 23634
16 download Installing+AsteriskNOW admin 2017.08.25 23601
15 FreePBX 12 – Getting Started Guide admin 2017.08.29 23594
14 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 23585
13 User Control Panel (UCP) 14+ admin 2017.08.23 23565
12 Google letter agi admin 2017.08.26 23522
11 Asterisk 13 Debian 8 admin 2015.11.13 23506
10 /sbin/service httpd start stop web start stop admin 2017.08.16 23505
9 IVR actions asterisk admin 2017.08.31 23444
8 asterisk XactView V3-CRM Widget admin 2017.08.24 23415
7 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 23346
6 Asterisk dialolan detail explan good easy clean admin 2017.08.26 23205
5 how-to-freepbx-13-firewall-setup admin 2017.08.14 23195
4 Configuring Your PBX admin 2017.08.17 23148
3 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 15052
2 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 8594
1 php memory and filesize increase upload wav admin 2019.06.25 7586