linux – 如何在Debian上安装Mono XSP作为守护进程?

前端之家收集整理的这篇文章主要介绍了linux – 如何在Debian上安装Mono XSP作为守护进程?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望XSP作为守护进程在我的虚拟Debian 5上运行.

我怎样才能做到这一点?

我试过下一个:

$sudo cp /etc/init.d/skeleton /etc/init.d/xsp

正确更新了脚本:

PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Mono XSP4"
NAME=xsp4
DAEMON=/usr/bin/$NAME
DAEMON_ARGS="--port 80 --nonstop --root /home/godfather/Projects/Test"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

然后:

$sudo update-rc.d xsp defaults

但是在系统重新启动后,它会陷入下一步:

xsp
Listening on address: 0.0.0.0
Root directory: /home/godfather/Projects/Test
Listening on port: 80 (non-secure)

就这样.

如果在用户模式下运行它并且没有–nonstop,它具有相同的输出

xsp
Listening on address: 0.0.0.0
Root directory: /home/godfather/Projects/Test
Listening on port: 80 (non-secure)
Hit Return to stop the server.

这是XSP的bug吗?

解决方法

XSP不应该用于生产,它是一个开发服务器.

要进行生产,请查看mod_mono:http://www.mono-project.com/Mod_mono

原文链接:/linux/397023.html

猜你在找的Linux相关文章