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 application to a windows service and tried to use mono-service2 to start it but it resulted in some error about image not found. It seemed to be talking about the mono image or some such and not a image file if that makes sense. It seems that the mono-service2 is built for dotnet 2.0 not dotnet 4.0 and i can't seem to find code for a dotnet 4.0 version. Can anyone point me in the correct direction or give me another way to run my services? I really want them to show up as a service in webmin so i can stop, start and check their status over the web.

I can't post the exact error as i don't have it on me but i will post it in about 6 hours if it will help.

link|improve this question

75% accept rate
Just an update the error actually does not show anymore. Now it just returns right away but does nothing. Nothing is shown even with --debug flag and the log files for my app is not created or written to. – Seer Jul 28 '11 at 7:22
Also why do i get a -2 rating just for asking about mono-service2 and dotnet 4? – Seer Jul 28 '11 at 7:23
What version of mono have you got, and what linux distro? – IanNorton Jul 28 '11 at 18:05
ubuntu and mono 2.10 Also just to be clear the it runs fine as a console app on mono under linux it is just when i change it to a service and try to run it under mono-service2 that things don't seem to work. I thought maybe mono-service2 may not be built for 4.0 apps – Seer Jul 28 '11 at 20:32
stackoverflow.com/questions/3660039/… may be a way to do what i want and i plan to test it out and see how well i can get it to work. – Seer Jul 30 '11 at 1:54
feedback

1 Answer

If the program simply needs to run in the background rather than on a console there are other ways of starting it on linux without using the services system from mono.

Eg via a shell script:

#!/bin/bash
mono myprogram.exe $@ 1> ~/stdout.log 2> ~/stderr.log &
link|improve this answer
Sorry this is a process i want running all the time like a service even if i log out. I have looked at nohup but i still need to be able to shut it down cleanly like a service. For the console app i just have it wait for me to press enter but clearly that can't be done with nohup. well not that i know of anyway. As a service it did not matter as it has a shutdown method. – Seer Jul 28 '11 at 20:36
i have started looking at stackoverflow.com/questions/3660039/… as a possible solution – Seer Jul 30 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.