c#服务作为debian中的守护进程,带有单服务
本文关键字:服务 单服务 守护 debian 进程 | 更新日期: 2023-09-27 18:03:24
我似乎找不到让c#服务在debian中作为"服务"运行的方法。我做错了什么?
我遵循msdn的这篇文章创建了一个示例windows服务:http://msdn.microsoft.com/en-us/library/zt39148a(v=vs.80).aspx
我可以在我的windows机器上运行服务,启动和停止服务,并看到它写入MyNewLog。
然后我将它(.exe文件)复制到我的debian机器上,并尝试使用(作为root)单服务MyNewService.exe
运行它系统日志告诉我服务已经启动!
我没有错误,我在系统中看不到任何新创建的日志文件。我做错了什么?
如果有帮助,下面是代码:Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace MyNewService
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
System.ServiceProcess.ServiceBase[] ServicesToRun;
ServicesToRun = new System.ServiceProcess.ServiceBase[]
{
new MyNewService()
};
System.ServiceProcess.ServiceBase.Run(ServicesToRun);
}
}
}
Service.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace MyNewService
{
public partial class MyNewService : ServiceBase
{
public MyNewService()
{
InitializeComponent();
if (!System.Diagnostics.EventLog.SourceExists("MySource"))
{
System.Diagnostics.EventLog.CreateEventSource(
"MySource", "MyNewLog");
}
myEventLog.Source = "MySource";
myEventLog.Log = "MyNewLog";
}
protected override void OnStart(string[] args)
{
myEventLog.WriteEntry("Service Started: OnStart");
}
protected override void OnStop()
{
myEventLog.WriteEntry("Service Halted: OnStop.");
}
}
}
/欢呼
尝试在其他地方记录日志,而不是使用System.Diagnostics。事件日志,可能是文本文件或类似的。
我找不到任何最近的,但这篇文章建议EventLog在Linux上运行时被简单地丢弃;这是有道理的。
编辑:调查Mono来源似乎证实了这一点。事件日志记录有三种可能的选项:win32、local和null。如果MONO_EVENTLOG_TYPE环境变量被设置为local,那么在Linux上,日志应该默认写入/var/lib/mono/eventlog。
你真的需要把你的日志代码从你的期望中分离出来——看起来你的服务工作得很好,但是日志记录是问题所在。
set environment MONO_EVENTLOG_TYPEhttps://man.cx/mono (1)
/lib/systemd/系统/order-log-writer.service
[Service]
Environment=MONO_EVENTLOG_TYPE=local:/var/lib/mono/eventlog
User=root
Group=root
Type=forking
PIDFile=/run/order-log-writer.pid
ExecStart=/usr/bin/mono-service -l:/run/order-log-writer.pid /usr/bin/rmq-bot/order-log-writer.exe
ExecStop=/bin/kill -HUP $MAINPID
c# try
{ }
catch (Exception e)
{
EventLog.WriteEntry(this.GetType().FullName, " error[.] " + e.Message);
}
Linux user@host:/var/lib/mono/eventlog/Application$ ls
1.log 2.log 3.log Application EDAClasses.OrderLogWriterClass
user@host:/var/lib/mono/eventlog/Application$ cat 1.log
InstanceID: 0
EntryType: 4
Source: EDAClasses.OrderLogWriterClass
Category: 0
TimeGenerated: 20170926140803456
ReplacementStrings: 1
error[.] Error converting value 1 to type 'OrderLog'. Path '', line 1, position 1.