概述

fusionpbx是以freeswitch作为底层框架开发而成的开源PBX,在freeswitch的基础上,优化了GUI的易用性。

fusionpbx可用作高可用性的单租户或基于域的多租户 PBX、运营商级交换机、呼叫中心服务器、传真服务器、voip服务器、语音邮件服务器、会议服务器、语音应用服务器、设备框架等。

fusionpbx提供无限分机、语音邮件到电子邮件、音乐保持、呼叫停放、呼叫中心、呼叫队列、电话配置和许多其他功能。 它提供您的业务所需的功能,并为中小型企业带来企业级电话系统功能。

fusionpbx官方网站:https://www.fusionpbx.com/

本文档主要介绍fusionpbx的安装过程和简单应用。

环境

centos:CentOS  release 7.0 (Final)或以上版本

GCC:4.8.5

安装步骤

官方的安装脚本很方便,也很好用。

安装过程比较久,需要耐心等待。

CentOS Install

Start with a minimal install of CentOS 7. Then run the following commands as 'root'.

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

安装成功后会提示重启服务器

Installation has completed.

Use a web browser to login.

domain name: https://192.168.0.152

username: admin

password: gdeW2wUjAjJvjD9

The domain name in the browser is used by default as part of the authentication.

If you need to login to a different domain then use username@domain.

username: admin@192.168.0.152

Official FusionPBX Training

Fastest way to learn FusionPBX. For more information https://www.fusionpbx.com.

Available online and in person. Includes documentation and recording.

Location:               Online

Admin Training:         TBA

Advanced Training:      TBA

Continuing Education:   https://www.fusionpbx.com/training

Timezone:               https://www.timeanddate.com/weather/usa/idaho

Additional information.

https://fusionpbx.com/members.php

https://fusionpbx.com/training.php

https://fusionpbx.com/support.php

https://www.fusionpbx.com

http://docs.fusionpbx.com

*------------------------------------------*

* NOTE: Please save the above information. *

* REBOOT YOUR SERVER TO COMPLETE INSTALL.  *

*------------------------------------------*

fusionpbx相关的进程

通过命令查看fusionpbx使用到的组件和进程。

[root@localhost ~]# ps -ef | grep -E 'freeswitch|php-fpm|nginx|postgres|postfix|memcached'

memcach+  1041     1  0 10:45 ?        00:00:00 /usr/bin/memcached -u memcached -p 11211 -m 64 -c 1024

root      1054     1  0 10:45 ?        00:00:00 php-fpm: master process (/etc/php-fpm.conf)

postgres  1206     1  0 10:45 ?        00:00:00 /usr/pgsql-14/bin/postmaster -D /var/lib/pgsql/14/data/

freeswi+  1701     1  0 10:45 ?        00:00:13 /usr/bin/freeswitch -u freeswitch -g daemon -ncwait -nonat

root      1753     1  0 10:45 ?        00:00:00 nginx: master process /usr/sbin/nginx

freeswi+  1754  1753  0 10:45 ?        00:00:00 nginx: worker process

freeswi+  1755  1753  0 10:45 ?        00:00:00 nginx: worker process

freeswi+  1756  1753  0 10:45 ?        00:00:00 nginx: worker process

freeswi+  1757  1753  0 10:45 ?        00:00:00 nginx: worker process

root      1819     1  0 10:45 ?        00:00:00 /usr/libexec/postfix/master -w

postfix   1820  1819  0 10:45 ?        00:00:00 pickup -l -t unix -u

postfix   1821  1819  0 10:45 ?        00:00:00 qmgr -l -t unix -u

postgres  1869  1206  0 10:45 ?        00:00:00 postgres: logger

postgres  2065  1206  0 10:45 ?        00:00:00 postgres: checkpointer

postgres  2066  1206  0 10:45 ?        00:00:00 postgres: background writer

postgres  2067  1206  0 10:45 ?        00:00:00 postgres: walwriter

postgres  2068  1206  0 10:45 ?        00:00:00 postgres: autovacuum launcher

postgres  2069  1206  0 10:45 ?        00:00:00 postgres: stats collector

postgres  2070  1206  0 10:45 ?        00:00:00 postgres: logical replication launcher

freeswi+  2151  1054  0 10:45 ?        00:00:00 php-fpm: pool www

freeswi+  2152  1054  0 10:45 ?        00:00:00 php-fpm: pool www

freeswi+  2153  1054  0 10:45 ?        00:00:00 php-fpm: pool www

freeswi+  2154  1054  0 10:45 ?        00:00:00 php-fpm: pool www

freeswi+  2155  1054  0 10:45 ?        00:00:00 php-fpm: pool www

freeswi+  9436  1054  0 10:55 ?        00:00:00 php-fpm: pool www

root      9587  9406  0 11:19 pts/1    00:00:00 grep --color=auto -E freeswitch|php-fpm|nginx|postgres|postfix|memcached

页面操作

浏览器打开URL https://192.168.0.152/

然后就没有然后了,我尝试了好几天,都无法使用SIP账号注册/呼叫。

官方文档中,整个系统如何启动/停止的操作都没有,模块组件的介绍也没有,碰到问题的解决思路更无从谈起。

最后,我想卸载掉它,也找不到任何资料。

感觉就是为了卖会员,付费培训。

卸载

经过1个小时的摸索,总结的卸载步骤,无法保证完全恢复

yum remove freeswitch

yum remove php-fpm

yum remove nginx

yum remove memcached

yum remove postgresql

yum remove postfix

yum remove php-pgsql

rpm -qa postgresql*  |  xargs rpm -e

总结

fusionpbx最好的一点,就是安装比较容易。

但是实际使用起来,一点都不容易,文档不全,描述不清晰,使用的人群也不多,网上资料很少。

碰到问题,往往无从下手。

总之,看看还行,使用就算了。

问题汇总

1, 添加了一个用户public01,groups设置为public,使用该用户登陆之后,页面无法切换到其他用户。解决办法:清理页面缓存。

2, fusionpbx安装完成后,并不能直接注册打电话。。。未解决,放弃了。

空空如常

求真得真

fusionpbx简介的更多相关文章

  1. ASP.NET Core 1.1 简介

    ASP.NET Core 1.1 于2016年11月16日发布.这个版本包括许多伟大的新功能以及许多错误修复和一般的增强.这个版本包含了多个新的中间件组件.针对Windows的WebListener服 ...

  2. MVVM模式和在WPF中的实现(一)MVVM模式简介

    MVVM模式解析和在WPF中的实现(一) MVVM模式简介 系列目录: MVVM模式解析和在WPF中的实现(一)MVVM模式简介 MVVM模式解析和在WPF中的实现(二)数据绑定 MVVM模式解析和在 ...

  3. Cassandra简介

    在前面的一篇文章<图形数据库Neo4J简介>中,我们介绍了一种非常流行的图形数据库Neo4J的使用方法.而在本文中,我们将对另外一种类型的NoSQL数据库——Cassandra进行简单地介 ...

  4. REST简介

    一说到REST,我想大家的第一反应就是“啊,就是那种前后台通信方式.”但是在要求详细讲述它所提出的各个约束,以及如何开始搭建REST服务时,却很少有人能够清晰地说出它到底是什么,需要遵守什么样的准则. ...

  5. Microservice架构模式简介

    在2014年,Sam Newman,Martin Fowler在ThoughtWorks的一位同事,出版了一本新书<Building Microservices>.该书描述了如何按照Mic ...

  6. const,static,extern 简介

    const,static,extern 简介 一.const与宏的区别: const简介:之前常用的字符串常量,一般是抽成宏,但是苹果不推荐我们抽成宏,推荐我们使用const常量. 执行时刻:宏是预编 ...

  7. HTTPS简介

    一.简单总结 1.HTTPS概念总结 HTTPS 就是对HTTP进行了TLS或SSL加密. 应用层的HTTP协议通过传输层的TCP协议来传输,HTTPS 在 HTTP和 TCP中间加了一层TLS/SS ...

  8. 【Machine Learning】机器学习及其基础概念简介

    机器学习及其基础概念简介 作者:白宁超 2016年12月23日21:24:51 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结 ...

  9. Cesium简介以及离线部署运行

    Cesium简介 cesium是国外一个基于JavaScript编写的使用WebGL的地图引擎,一款开源3DGIS的js库.cesium支持3D,2D,2.5D形式的地图展示,可以自行绘制图形,高亮区 ...

  10. 1.Hibernate简介

    1.框架简介: 定义:基于java语言开发的一套ORM框架: 优点:a.方便开发;           b.大大减少代码量;           c.性能稍高(不能与数据库高手相比,较一般数据库使用者 ...

随机推荐

  1. [ABC263B] Ancestor

    Problem Statement There are $N$ people, called Person $1$, Person $2$, $\ldots$, Person $N$. The par ...

  2. cache操作:clean、invalidate与flush的含义

    前言 本文试图搞清楚cache几个操作:clean.invalidate与flush的含义.由于只用过ARM和RISC-V,所以是从ARM和RISC-V的角度来说明. cache line cache ...

  3. ElasticSearch之Delete index API

    删除指定的索引. 同时删除索引关联的数据.分片.元数据等相关的资源,因此执行前需要慎重. 命令样例如下: curl -X DELETE "https://localhost:9200/tes ...

  4. vulnhub - tornado - wp

    coverY: 0 tornado 信息收集 目标开放了80,22端口. 访问80网页,是默认页面: 目录枚举 用dirsearch没有什么发现,换gobuster发现了一个bluesky目录.访问如 ...

  5. 学会@ConfigurationProperties月薪过三千

    学习 @ConfigurationProperties 之前我们需要一些前置知识点: @Value是个什么东西 首先明确:@ConfigurationProperties 是 SpringBoot 注 ...

  6. Pdfium.Net.Free 一个免费的Pdfium的 .net包装器--概述

    PdfiumViewer 是一个伟大的项目,可惜仓库现已经归档,This repository has been archived by the owner on Aug 2, 2019. It is ...

  7. idea配置tomcat热部署

    idea配置tomcat热部署,点击+添加一个local的tomcat服务 点击部署tab 添加Artifact...选择 一定要选择exploded,否则没有热部署选项!!! 一定要选择explod ...

  8. TextCNN和TextRNN:原理与实践

    1.TextCNN原理 CNN的核心点在于可以捕获信息的局部相关性,具体到文本分类任务中可以利用CNN来提取句子中类似N-Gram的关键信息. (1)一维卷积:使用不同尺寸的kernel_size来模 ...

  9. 如何用华为云ModelArts平台玩转Llama2

    本文分享自华为云社区<如何用华为云ModelArts平台玩转Llama2>,作者:码上开花_Lancer. 天哪~~ Llama2模型开源了拉!! Llama2不仅开源了预训练模型,而且还 ...

  10. 详解CNN实现中文文本分类过程

    摘要:本文主要讲解CNN实现中文文本分类的过程,并与贝叶斯.决策树.逻辑回归.随机森林.KNN.SVM等分类算法进行对比. 本文分享自华为云社区<[Python人工智能] 二十一.Word2Ve ...