当前位置:网站首页>FusionPBX 安装 —— 筑梦之路

FusionPBX 安装 —— 筑梦之路

2022-06-13 05:58:00 筑梦之路

开源地址:GitHub - fusionpbx/fusionpbx: Official FusionPBX - A full-featured domain based multi-tenant PBX and voice switch for FreeSwitch.

官方安装说明:

Debian  9 & 10

wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/debian/pre-install.sh | sh;
cd /usr/src/fusionpbx-install.sh/debian && ./install.sh

Ubuntu 18.04

wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/ubuntu/pre-install.sh | sh;
cd /usr/src/fusionpbx-install.sh/ubuntu && ./install.sh

FreeBSD  10 & 11

pkg install --yes git
cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git
cd /usr/src/fusionpbx-install.sh/freebsd && ./install.sh

CentOS

yum install wget
wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/centos/pre-install.sh | sh
cd /usr/src/fusionpbx-install.sh/centos && ./install.sh

---------------------------------------
https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/centos/pre-install.sh  脚本内容

#!/bin/sh

#install git
yum -y install git

#get the install script
cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git

#change the working directory
cd /usr/src/fusionpbx-install.sh/centos


------------------------------------------------

 fusionpbx-install.sh-master.zip-PHP文档类资源-CSDN下载

fusionpbx-5.0.1.tar.gz-PHP文档类资源-CSDN下载

原网站

版权声明
本文为[筑梦之路]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_34777982/article/details/125249253