centos7安装FreeSwitch,以及设置Freeswitch开机自启

一.     下载指定版本的freeswitch

cd /usr/local/src
git clone --branch v1.10.7 https://github.com/signalwire/freeswitch.git

 也可以下载1.10.7的压缩包

二.       进入freeswitch目录

cd /usr/local/src/freeswitch

三.Sofia sip和SpanDSP依赖项已从FreeSWITCH中删除™ 自v1.10.4发布(2020年8月5日)以来。所以要先下载编译这两个依赖

cd /usr/local/src/freeswitch
git clone https://github.com/freeswitch/sofia-sip
git clone https://github.com/freeswitch/spandsp

四. 修改module.conf

由于freeswitch支持动态编译和动态加载,一些不需要的模块可以不编译,如:mod_signalwire、mod_av,修改方法:

找到module.conf文件,找到mod_signalwire和mod_av注释掉,修改如下:

#applications/mod_signalwire
#applications/mod_av

五.编译freeswitch

cd /usr/local/src/freeswitch
./bootstrap.sh
./configure --enable-portable-binary --prefix=/usr/local/freeswitch --with-gnu-ld --with-python --with-openssl --enable-core-odbc-support --enable-zrtp
make
make install

六.启动freeswitch

cd /usr/local/freeswitch/bin
./freeswitch -nonat

 1.启动成功:如下

centos7安装FreeSwitch,以及设置Freeswitch开机自启_第1张图片

 2.设置防火墙【如els调用】

修改配置文件

vi /etc/firewalld/zones/public.xml

后直接添加:

重启服务

firewall-cmd --reload

查看端口
 

firewall-cmd --list-ports

七.设置开机自启

 1、在目录/usr/lib/systemd/system下创建文件freeswitch.service,内容如下:

[Unit]
Description=FreeSWITCH
After=syslog.target network.target
After=postgresql.service postgresql-9.3.service postgresql-9.4.service mysqld.service httpd.service

[Service]
User=root
EnvironmentFile=-/etc/sysconfig/freeswitch
WorkingDirectory=/usr/local/freeswitch
ExecStart=/usr/local/freeswitch/bin/freeswitch -nc -nf $FREESWITCH_PARAMS 
ExecReload=/usr/bin/kill -HUP $MAINPID
#ExecStop=/usr/local/freeswitch/bin/freeswitch -stop $FREESWITCH_PARAMS
ExecStop=/bin/kill -9 $MAINPID


[Install]
WantedBy=multi-user.target

2、在目录/etc/sysconfig下创建文件freeswitch,内容如下:

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

3、修改

cd /usr/local/
chown -R root:root freeswitch
chmod -R g+w freeswitch

4、启动

开机启动:systemctl enable freeswitch.service
启动服务:systemctl start freeswitch.service
结束服务:systemctl stop freeswitch.service

八.遇到的问题

   有时间再补充到这里

注:如果缺依赖则yum install或者源码安装,如果依赖包的版本过低,则先yum remove卸载后重新安装高版本即可。
  这种依赖问题没有捷径,非要说的话有两点:保持耐心 + 仔细看报错信息,

你可能感兴趣的:(FreeSwitch,服务器)