Red5 - Linux 安装 init.d 脚本

Red5 - Linux 安装 init.d 脚本

我已经关注了这个教程在 Ubuntu 11.04 上安装 red5
我现在可以从中运行它/usr/share/red5/red5.sh
但我想有一个像/etc/init.d/red5 start|stop|restart|...
我找到的一个init.d 脚本这里但使用时,它意味着

.: 11: 无法打开 /etc/rc.d/init.d/functions

我该怎么做才能让它工作?

编辑

替换. /etc/rc.d/init.d/functions. /lib/lsb/init-functions将给我

$ sudo /etc/init.d/red5 stop
/etc/init.d/red5: 50: status}”: not found
stop:缺少任务名称
请尝试“stop --help”获取更多信息。
restart:缺少任务名称
请尝试“restart --help”获取更多信息。

答案1

您找到的初始化脚本依赖于不存在的文件。请尝试替换:

# Source function library
. /etc/rc.d/init.d/functions

有了这个:

# Source function library
. /lib/lsb/init-functions

有可能还需要进行更多改变。

相关内容