Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
7answers
6k views

How do I code a Mono Daemon

I'm trying to write a Mono C# daemon for linux. I'd like to do a starts and stops of it when its done processing instead of just killing the process. Does anyone have any examples of this? Edit: I ...
11
votes
2answers
6k views

using mono-service to wrap a windows service on linux

Hi I'm trying to use mono-service2 to run a stock Windows Service Project from visual studio. I'm running this on debian with mono 2.0 and compiling with. gmcs *.cs -pkg:dotnet I try and start with ...
5
votes
1answer
475 views

.NET Service to Linux Daemon

I am writing a portable service/daemon using .NET 3.5, my windows service is running, but I was wondering about the mono port... Mono-service is what I am looking for if I understand correctly. How ...
3
votes
3answers
2k views

Success with start-stop-daemon and mono-service2?

Has anyone had any success using start-stop-daemon and mono-service2 together? I've been fighting this for a few days now and have gotten various bits to work, but have had no success in getting a ...
2
votes
1answer
129 views

Passing command line arguments to mono-service

Is there a way to pass command line arguments to a service invoked by mono-service? All of the command line arguments seem to be absorbed by mono-service instead of passed to the service.
2
votes
1answer
729 views

mono-service on windows

I have inherited an application that uses mono that runs a windows service. All of the original developers are gone. The production version uses mono on linux. I am trying to get a development ...
1
vote
0answers
128 views

mono-service2 loops on exit running on mac osx 10.5

I have a C# service that needs to run on Windows and Mac. I created a separate project for the mac accessing the common code to handle any differences, and it sets a define for the code to use. I ...
0
votes
1answer
36 views

why does a mono-service doesn't start after kill?

I ran a mono-service with mono-service2 -l:lockfile process.exe It started the service and it was all fine but I had to change something in source. So I recompiled and deployed it. I killed the ...
0
votes
1answer
194 views

mono-service2 on linux for a Dotnet4 Service

Basically i have a dotnet 4 console application that i want to convert to a linux service. I have tested the console application on the latest build of mono and it works. I then converted the console ...
0
votes
1answer
469 views

mono-service command line arguments

So basically, I've created a windows service that I'm not porting to linux and mono. Everything is working great except I can't figure out how to send command line arguments to a windows service that ...