Debian
debian系统使用
本人SGJ
本人SGJ。
展开
-
Lua连接mysql
lua通过luasql安装连接mysql(1)安装luasql-mysqlwget https://repo.mysql.com/yum/mysql-5.7-community/el/7/x86_64/mysql-community-devel-5.7.35-1.el7.x86_64.rpm(2)安装luasql-mysql// 最后两个参数是不检查依赖:加参数的理由报这个错libmysqlclient.so.20()(64bit) is needed by mysql-community-dev原创 2022-02-08 09:19:40 · 1647 阅读 · 0 评论 -
FreeSWITCH单独编译模块
以编译mod_callcenter模块作为示例//1、修改默认编译模块。在目录/usr/local/src/freeswitch/modules.conf,找到#applications/mod_callcenter,去掉“#”,保存配置文件。//2、在/usr/src/freeswitch目录(该目录是你自己下载的freeswitch源码路径),分别执行 ./configuremakemake install.//3、执行后,在freeswitch运行界面执行load mod_callcent原创 2021-12-21 16:59:41 · 710 阅读 · 0 评论 -
FreeSWITCH_Debian10.11_编译安装
本人使用的镜像是:debian-10.11.0-amd64-DVD-1。按下方操作即可编译成功。(注:debian镜像源可以更换;Debian使用)apt-get update && apt-get install -yq gnupg2 wget lsb-releasewget -O /usr/share/keyrings/freeswitch-archive-keyring.gpg https://files.freeswitch.org/repo/deb/debian-releas原创 2021-12-21 15:56:38 · 436 阅读 · 2 评论 -
FreeSWITCH_编译后模块_ModulesConfXml
下面的是FreeSWITCH在编译前modules.conf文件中的模块逐步更新下方模块的含义或其功能。<configuration name="modules.conf" description="Modules"> <modules> <!-- Loggers (I'd load these first) --> <load module="mod_console"/> <!-- <load module="mo原创 2021-12-21 15:40:51 · 869 阅读 · 0 评论 -
FreeSWITCH_编译前模块_ModulesConf
下面的是FreeSWITCH在编译前modules.conf文件中的模块逐步更新下方模块的含义或其功能。#applications/mod_abstraction#applications/mod_av#applications/mod_avmd#applications/mod_bert#applications/mod_blacklistapplications/mod_callcenter#applications/mod_cidlookup#applications/mod_clu原创 2021-12-21 15:32:46 · 563 阅读 · 0 评论 -
FreeSwitch_CallCenter_Tiers
1、queue 队列queue名2、agent 坐席agent名3、state 状态只能是 Ready4、level 梯队等级 用level来划分梯队等级5、position 位置 在一个梯队中的位置添加callcenter_config tier add [queue name] [agent name] [[level]] [[position]]修改(一次只能修改(state|level|position)这三个任意一个)callcenter_config tier set原创 2021-06-23 08:39:18 · 487 阅读 · 0 评论 -
FreeSwitch_CallCenter_Queue
FreeSwitch的呼叫中心中队列中的参数梳理Strategy:策略模式,定义来电根据哪些策略模式查找队列中的客户端.Ring-all:同时呼叫所有的客户端,某个接听后其它客户端自动挂断.Longest-idle-agent:最大空闲客户端优先。Round-robin:最后一次客户端通话的优先.Top-down:从上倒下查找客户端agent-with-least-talk-ti...原创 2020-05-06 15:25:35 · 1596 阅读 · 1 评论 -
debian使用
1、debian镜像链接: debian镜像.2、清华源链接: 清华源.3、debian改源位置:vi /etc/apt/sources.list4、开启ssh登录// 安装sshapt-get install ssh// 查看ssh状态/etc/init.d/ssh status//修改sshcat >> /etc/ssh/sshd_config << EOFPasswordAuthentication yesPermitRootLogin yesEOF原创 2021-12-20 21:55:06 · 696 阅读 · 0 评论