How to run DNX 'console app' as a background service on Linux?

I've implemented a DNX (dnx451) 'console app' which is intended to run as a background service. On Windows I would just turn it into a Windows Service. What is the proper way to do this on Linux (for instance, Ubuntu)?

EDIT:

Found more info here: How to migrate a .NET Windows Service application to Linux using mono?


On Unix/Linux operating system you can turn any program into a background service like

dnx run &

The "&" turns the "dnx run" it into a background program (when I remember right for your current shell session). For real background services look at the startup scripts of common Unix daemons like mysql or apache httpd. They get started by the initd/systemd processes and then execute on their own.

链接地址: http://www.djcxy.com/p/90044.html

上一篇: 在Linux上部署ASP.NET MVC:最佳实践,工具和惊喜

下一篇: 如何在Linux上运行DNX'console app'作为后台服务?