PerKins Zhu

Le vent se lève,il faut tenter de vivre.
随笔 - 86, 文章 - 0, 评论 - 45, 阅读 - 21万

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

voip服务监控及运维

Posted on   PerKins.Zhu  阅读(67)  评论(0编辑  收藏  举报

配置rtpproxy系统自动启动:

新增 /lib/systemd/system/rtpproxy.service

复制代码
[Unit]
Description=rtpproxy start
#After=network.target
#控制和opensips的启动顺序。opensips需要在rtpproxy启动后运行
Before=opensips.service

[Service]
Type=forking
Restart=on-failure
User=root
ExecStart=/usr/local/bin/rtpproxy -A 172.21.71.134 -l 172.17.0.6 -s udp:172.17.0.6:12221 -n tcp:172.17.0.6:12221 -F -d DBUG -m 50002 -M 50020
Restart=always
RestartSec=2

[Install]
WantedBy=multi-user.target
复制代码

新增  /lib/systemd/system/opensips.service

复制代码
[Unit]
Description=opensips start
After=rtpproxy.service

[Service]
Type=forking
Restart=on-failure
User=root
ExecStart=/usr/local/sbin/opensips
Restart=always
RestartSec=2

[Install]
WantedBy=multi-user.target
复制代码

 

复制代码
1、启动服务 systemctl start 服务名
2、停止服务 systemctl stop 服务名
3、重启服务 systemctl restart 服务名
4、查看服务是否已启动 systemctl is-active 服务名
5、查看服务的状态 systemctl status 服务名
6、启用开机自启动服务
systemctl enable 服务名
7、停用开机自启动服务
systemctl disable 服务名
8、查看服务是否为开机自启动
systemctl is-enabled 服务名
9、只重启正在运行中的服务
systemctl try-restart 服务名
10、显示所有的服务状态---空格翻页 q推出
systemctl list-units --type service --all
11、查看启动成功的服务列表
systemctl list-unit-files|grep enabled
12、查看启动失败的服务列表
systemctl --failed
13、查看所有服务的状态---空格翻页 q推出
systemctl list-unit-files --type service
14、 加载新的unit 配置文件  
systemctl reload-daemon 
 
复制代码

 

相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示