我目前在Ubuntu 14.4上运行Liquidsoap,流到Icecast,托管在同一个机器上。
我的安装程序运行正常,但是在运行sudo service liquidsoap时,我得到了以下错误:
fatal error exception unix.unix_error(50, "bind", "" )为了重新启动液体soap,我需要终止进程或重新启动。
然后它就会正确运行。直到我因为任何原因需要重启。
顺便说一下,liquidsoap创建了一个名为liquidsoap的用户和组,但是我是通过我创建的另一个用户运行sudo命令的。
有谁有什么想法吗?
发布于 2015-08-06 12:39:17
已通过启用pid文件创建修复。
我的init.d - https://gist.github.com/anonymous/d7e232fc280d2fe1df56的副本
#!/bin/sh
### BEGIN INIT INFO
# Provides: liquidsoap
# Required-Start: $remote_fs $network $time
# Required-Stop: $remote_fs $network $time
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Starts the liquidsoap daemon
# Description:
### END INIT INFO
user=liquidsoap
group=liquidsoap
prefix=/usr
exec_prefix=${prefix}
confdir=/etc/liquidsoap
liquidsoap=${exec_prefix}/bin/liquidsoap
rundir=/var/run/liquidsoap
# Test if $rundir exists
if [ ! -d $rundir ]; then
mkdir -p $rundir;
chown $user:$group $rundir
fi
case "$1" in
stop)
echo -n "Stopping liquidsoap channels: "
cd $rundir
has_channels=
for liq in *.pid ; do
if test $liq != '*.pid' ; then
has_channels=1
echo -n "$liq "
start-stop-daemon --stop --quiet --pidfile $liq --retry 4
fi
done
if test -n "$has_channels"; then
echo "OK"
else
echo "no script found in $confdir"
fi
;;
start)
echo -n "Starting liquidsoap channels: "
cd $confdir
has_channels=
for liq in *.liq ; do
if test $liq != '*.liq' ; then
has_channels=1
echo -n "$liq "
start-stop-daemon --start --quiet --pidfile $rundir/${liq%.liq}.pid \
--chuid $user:$group --exec $liquidsoap -- -d $confdir/$liq
fi
done
if test -n "$has_channels"; then
echo "OK"
else
echo "no script found in $confdir"
fi
;;
restart|force-reload)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload}"
exit 1
;;
esac发布于 2019-09-29 02:12:36
上面提到的解决方案都没有解决我的问题。我最近不得不通过在启动守护程序后设置适当的所有权和权限来修复它。终止进程并重新启动后,再重新启动即可正常工作。
start-stop-daemon --start --quiet --pidfile $rundir/${liq%.liq}.pid \
--chuid $user:$group --exec $liquidsoap -- -d $confdir/$liq && sleep 1 && chmod 600 $rundir/${liq%.liq}.pid && chown root:root $rundir/${liq%.liq}.pidhttps://stackoverflow.com/questions/31825728
复制相似问题