阿里云系统安装部署Freeswitch

匿名 (未验证) 提交于 2019-12-02 23:38:02

1.安装vim

apt-get install vim

2.修改镜像源

将/etc/apt/source.list的原有源注释掉,添加下面的源:

deb http://mirrors.163.com/debian/ jessie main non-free contrib

3.安装指定版本的jdk

  1. 在/usr/local下创建目录java
  2. 将jdk-1_5_0_22-linux-amd64.bin上传至/usr/local/java,解压,配置环境变量

4.安装freeswitch

4.1 添加源

wget -O - https://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add -   echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list   apt-get update

apt-get install -y --force-yes freeswitch-video-deps-most

cd /usr/src/   git clone https://freeswitch.org/stash/scm/fs/freeswitch.git -bv1.6 freeswitch   cd freeswitch/   git config pull.rebase true

在/usr/src/freeswitch/目录下执行

./bootstrap.sh -j

在/usr/src/freeswitch下修改modules.conf文件,将需要的模块前的注释去掉

在 /usr/src/freeswitch/目录下执行

./configure   make   make install

另外,把声音文件也装上

make cd-sounds-install cd-moh-install

ln -sf /usr/local/freeswitch/bin/freeswitch /usr/bin/   ln -sf /usr/local/freeswitch/bin/fs_cli /usr/bin/

后台启动freeswitch

freeswitch -nc

进入控制台

fs_cli

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!