C#服务作为Debian中使用mono的守护进程
我似乎无法找到一种方式让C#服务在debian中作为“服务”运行。 我究竟做错了什么?
我从msdn跟随这篇文章创建了一个示例窗口服务: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上运行时简单地放弃EventLog; 这是有道理的。
编辑:
调查单声道来源似乎证明了这一点。 事件记录有三种可能的选项:win32,local和null。 如果MONO_EVENTLOG_TYPE环境变量设置为local,那么在Linux上,日志应该默认写入/ var / lib / mono / eventlog。
您确实需要将您的日志代码与期望相隔离 - 似乎您的服务正常运行,但日志记录是问题所在。
设置环境MONO_EVENTLOG_TYPE https://man.cx/mono(1)
/lib/systemd/system/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.
链接地址: http://www.djcxy.com/p/90021.html