freeswitch官网最新版安装1.10.3

摘要:
~#lsb_release aNoLSB模块可用。发行者ID:DebianGNU/Linux9.9(扩展)发行版:9.9代码名称:https://43.589009[信息]switch_ core.c:

1.系统版本查询:我这里安装的是 debian9

root@qicheng:~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 9.9 (stretch)
Release: 9.9
Codename: stretch

2.安装我们直接根据官网指导进行。soeasy 一气呵成。

官网链接地址:

https://freeswitch.org/confluence/display/FREESWITCH/Debian+9+Stretch?src=contextnavpagetreemode

3.这里我们使用源码方式安装:

wget -O - https://files.freeswitch.org/repo/deb/debian-release/fsstretch-archive-keyring.asc | apt-key add -
 
echo "deb http://files.freeswitch.org/repo/deb/debian-release/ stretch main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src http://files.freeswitch.org/repo/deb/debian-release/ stretch main" >> /etc/apt/sources.list.d/freeswitch.list
 
apt-get update
  
# Install dependencies required for the build
apt-get build-dep freeswitch
  
# then let's get the source. Use the -b flag to get a specific branch
cd /usr/src/
git clone https://github.com/signalwire/freeswitch.git -bv1.10 freeswitch
cd freeswitch
  
# Because we're in a branch that will go through many rebases, it's
# better to set this one, or you'll get CONFLICTS when pulling (update).
git config pull.rebase true
  
# ... and do the build
./bootstrap.sh -j
./configure
make
make install

4.安装完成测试。

2020-07-16 10:14:43.589009 [INFO] switch_core.c:2510 
FreeSWITCH Version 1.10.3-release+git~20200511T105455Z~129de34d84~64bit (git 129de34 2020-05-11 10:54:55Z 64bit)

FreeSWITCH Started
Max Sessions [1000]
Session Rate [30]
SQL [Enabled]

免责声明:文章转载自《freeswitch官网最新版安装1.10.3》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Apache虚拟主机配置springboot mybatis自定义枚举enum转换下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

前端(十九)—— Bootstrap框架

Bootstrap Bootstrap中文文档 一、简介 Bootstrap是美国Twitter公司的设计师Mark Otto和Jacob Thornton合作基于HTML、CSS、JavaScript 开发的简洁、直观、强悍的前端开发框架,使得 Web 开发更加快捷。 Bootstrap框架是基于jQuery的,在导入bootstrap框架的js时应先...

安装jseclipse到myeclipse中

三种安装方式:1、在线安装2、下载安装包进行安装3、下载解压缩包进行安装 一、在线安装方式:    a、打开Help窗口,即:Help > Software Update. 选择 Find and Install     b、选择 "Search for new features to install",点击 Next    c、点击 "New Re...

微信默认表情符号的代码对照表

之前有不少朋友问我,微信公众平台如何发带有表情符号的图片,其实只需要在信息里面插入表情代码就可以使用的。 微信表情对照表如下: 表情图片 字符串代码 替换关键字 /::) 微笑 /::~ 伤心 /::B 美女 /::| 发呆 /:8-) 墨镜 /::< 哭 /::$ 羞 /::X 哑 /::...

Tomcat下载安装及常见问题解决办法

一、Tomcat的下载: 下载地址:http://tomcat.apache.org/ 下载Tomcat6.0(在左侧的Download下,考虑到稳定性现在企业大部分还在用Tomcat6.0) (1)这两种直接解压就可以使用,一般下载这一种(解压到你想放的文件夹下,可以直接更改解压后的文件名,文件夹命名最好是英文。) 32-bit Windows zip...

easyui grid 本地做分页

背景: 有的数据不是很多,但是有分页的需求,这个时候后台往往没有做分页,我们是一次请求了所有的数据。 代码: dataSource 为 grid 里的数据源 html部分: <table id="costtype"></table>    js部分: //费用类型 grid $('#costtype').datagrid({  ...

微信小程序如何播放音频,这里以本地mp3文件举例。

参考:https://blog.csdn.net/bangyiqing/article/details/104966135      官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.html Page({ data: {...