博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UBUNTU SERVER 9.04 配置 RED5 开机启动
阅读量:6334 次
发布时间:2019-06-22

本文共 1631 字,大约阅读时间需要 5 分钟。

hot3.png

新建一个文件拷贝到/etc/initd.d/red5
文件内容:
#!/bin/sh#This is a red5 start/stop script on debian/ubuntu#You will need to have screen installed#red5 is started in its own screen, allowing debug#for now, exept debug screen, there is no log# Construct vars#exe is the full path to the executablename="Red5"log_dir="/opt/red5/log"workdir="/opt/red5/"exe="./red5.sh"#time=`echo $(date +%Y%m%d)_$(date +%H_%M_%S)`# notify if no option is givenif [ $# -ne 1 ]; thenecho "Usage: $0 (start|stop|restart|status|debug) "exitfiStart(){cd $tmp_dirif ps -ef | grep SCREEN_$name | grep -v grep > /dev/null; thenecho "$name is running, stop first to restart!"else#mv $log_dir/red5.log $log_dir/red5.log.$timecd $workdir$exe echo "$name started"fi}Stop(){if ps -ef | grep SCREEN_$name | grep -v grep > /dev/null; thenecho "$name is runningStopping now"ps -ef | grep "$exe" | grep -v grep | awk ' { print $2 } '| xargs kill  > /dev/nullelseecho "$name not running"fi}Status(){if ps -ef | grep SCREEN_$name | grep -v grep > /dev/null ; thenecho "$name is running!"elseecho "$name is not running!"fi}Debug(){if ps -ef | grep SCREEN_$name | grep -v grep > /dev/null ; thenecho "$name is running!"echo "You will now debug $name, to quit debugging press CTRL+A+D"echo "DON'T USE CTRL+C, You will kill $name!"echo "Press any key to continue"read TA/usr/bin/screen -r SCREEN_$nameelseecho "$name is not running!"fi}# MAINcase "$1" instart)Start;;stop)Stop;;restart)Stopsleep 2Start;;debug)Debug;;status)Status;;esacexit 0
然后运行
cd /etc/init.d/
update-rc.d red5 defaults
 
可以通过
/etc/init.d/red5 start
启动服务
重启系统后red5服务随开机启动

转载于:https://my.oschina.net/waterbear/blog/149765

你可能感兴趣的文章
JVM的基本结构
查看>>
kvm(四)客户机vm的存储格式
查看>>
Windows10 之移除Cortana、 Microsoft Edge、联系支持人员和Windows 反馈等应用
查看>>
nagios使用gmail发送邮件 取mysql数据库的字段并邮件通知
查看>>
利用Content-Disposition控制浏览器下载或直接打开
查看>>
修复Linux操作系统的Root密码
查看>>
ExtJS2.0开发与实践笔记[0]——初识ExtJS
查看>>
ext4 文件系统的优化
查看>>
CCNP听课笔记10
查看>>
推荐几款清新Silverlight 4样式模板(Theme)
查看>>
Hyper-V 2016 系列教程16 Hyper-V 集成服务
查看>>
【编译打包】folly-0.31-1.el7.centos.src.rpm
查看>>
移动用户体验设计中的原型应用
查看>>
A10虚拟化技术在“云计算”中的应用
查看>>
windows7显示摄像头图标的方法
查看>>
nginx apache Smokeping 安装配置
查看>>
实战1:创建Windows Server 2008域
查看>>
DAO-数据访问对象(Data Access Object) 模式
查看>>
失声的黄莺
查看>>
foreman架构的引入3-安装Foreman1.5.3架构(all-in-one)
查看>>