Microsoft MVP성태의 닷넷 이야기
Linux: 18. C# - .NET Core Console로 리눅스 daemon 프로그램 만드는 방법 [링크 복사], [링크+제목 복사]
조회: 16152
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)

C# - .NET Core Console로 리눅스 daemon 프로그램 만드는 방법

검색해 보면 ASP.NET Core Generic Host를 기반으로 데몬 프로세스 만드는 방법이 공개되어 있습니다.

Creating a Daemon with .NET Core (Part 1)
; https://www.wintellect.com/creating-a-daemon-with-net-core-part-1/

Creating a Daemon with .NET Core (Part 2) 
; https://www.wintellect.com/creating-a-daemon-with-net-core-part-2/

물론 저렇게 만들어도 되지만, 간단한 데몬을 만드는 경우라면 가능한 별다른 모듈에 대한 의존성 없이 단일 dll로 만드는 방법도 고려해 볼 수 있습니다. 시작은, 프로그램이 종료하지 못하도록 막고 있기만 하면 됩니다.

static void Main(string[] args)
{
    EventWaitHandle ewh = new EventWaitHandle(false, EventResetMode.ManualReset);

    ewh.WaitOne();
}

이렇게 만든 프로그램을 "/etc/systemd/system"에 등록하면,

라즈베리 파이 - (윈도우의 NT 서비스처럼) 부팅 시 시작하는 프로그램 설정
; https://www.sysnet.pe.kr/2/0/11374

// $ ls -l /usr/lib/systemd/system
// $ ls -l /etc/systemd/system
// $ systemctl list-unit-files

$ cat /etc/systemd/system/dotnet-testd.service 

[Unit]
Description=testd.dll running on Unix 3.10.0.957

[Service]
WorkingDirectory=/home/tusr/testd/bin
ExecStart=/usr/share/dotnet/dotnet /home/tusr/testd/bin/testd.dll
KillSignal=SIGINT
SyslogIdentifier=dotnet-testd

[Install]
WantedBy=multi-user.target

이후부터 systemctl 명령을 이용해 NT 서비스처럼 daemon으로 실행시킬 수 있습니다.

[컴퓨터 시작 시 서비스가 로드하도록 등록]
$ sudo systemctl enable dotnet-testd

[서비스 지금 시작]
$ sudo systemctl start dotnet-testd

그런데 종료가 문제입니다. 우선 systemctl의 종료 명령에는 2가지가 있습니다.

[service 파일에 등록한 KillSignal로 종료, 이번 예제에서는 SIGINT 발생]
sudo systemctl stop dotnet-testd

[프로세스 종료]
sudo systemctl kill dotnet-testd

이 중에서 "kill" 명령어의 대응은 AppDomain.CurrentDomain.ProcessExit로 처리할 수 있습니다.

AppDomain.CurrentDomain.ProcessExit += (s, e) =>
{
    CleanupResources();
    WriteLog("Exited gracefully!");
};

그런데, 이것만 하게 되면 systemctl stop 명령어에 대해서는 반응하지 않고 그냥 종료해 버립니다.

sudo systemctl stop dotnet-testd
    (ProcessExit 없이 종료)

sudo systemctl kill dotnet-testd
    ProcessExit 이벤트 발생

따라서 systemctl stop에 대한 처리를 위해 Console.CancelKeyPress를 다음과 같이 추가할 수 있습니다.

// SIGINT에 반응
Console.CancelKeyPress += (s, e) =>
{
    WriteLog("stopped");
};

// 프로세스 종료에 반응
AppDomain.CurrentDomain.ProcessExit += (s, e) =>
{
    CleanupResources();
    WriteLog("Exited gracefully!");
};

위와 같이 각각 이벤트를 등록한 경우 systemctl 명령에 대해 다음과 같은 식의 로그를 확인할 수 있습니다.

sudo systemctl stop dotnet-testd
    Jun 24 21:38:33 centos7 dotnet-testd: stopped

sudo systemctl kill dotnet-testd
    Jun 24 21:48:49 centos7 dotnet-testd: Exited gracefully!

2가지 모두 반응했지만 재미있는 것은 SIGINT의 경우 ProcessExit 이벤트가 발생하지 않는다는 특이점이 있습니다. 만약 CancelKeyPress에서 ProcessExit로 흐르게 하고 싶다면 Cancel 속성을 true로 설정한 다음, EventWaitHandle을 시그널시켜서 프로세스를 종료하게 해 자연스럽게 ProcessExit가 발생하도록 만들 수 있습니다.

Console.CancelKeyPress += (s, e) =>
{
    WriteLog("stopped");
    e.Cancel = true;
    ewh.Set();
};

AppDomain.CurrentDomain.ProcessExit += (s, e) =>
{
    CleanupResources();
    WriteLog("Exited gracefully!");
};

따라서 각각의 종료에 대해 로그는 다음과 같이 바뀝니다.

sudo systemctl stop dotnet-testd
    Jun 24 21:41:57 centos7 dotnet-testd: stopped
    Jun 24 21:41:57 centos7 dotnet-testd: Exited gracefully!

sudo systemctl kill dotnet-testd
    Jun 24 21:41:08 centos7 dotnet-testd: Exited gracefully!




부가적으로, 서비스 스스로 install/uninstall을 하도록 다음과 같은 식의 처리도 추가해 주면 좋을 것입니다.

static void Main(string[] args)
{
    EventWaitHandle ewh = new EventWaitHandle(false, EventResetMode.ManualReset);

    if (args.Length >= 1)
    {
        string netDllPath = typeof(Program).Assembly.Location;
        if (args[0] == "--install" || args[0] == "-i")
        {
            InstallService(netDllPath, true);
        }
        else if (args[0] == "--uninstall" || args[0] == "-u")
        {
            InstallService(netDllPath, false);
        }
        return;
    }

    // ...[생략]...

    ewh.WaitOne();
}

static int InstallService(string netDllPath, bool doInstall)
{
    // 업데이트 2021-04-22
    // KillSignal=SIGINT 제거
    // KillMode=mixed 추가
    string serviceFile = @"
[Unit]
Description={0} running on {1}

[Service]
WorkingDirectory={2}
ExecStart={3} {4}
SyslogIdentifier={5}
KillMode=mixed

[Install]
WantedBy=multi-user.target
";

    string dllFileName = Path.GetFileName(netDllPath);
    string osName = Environment.OSVersion.ToString();

    FileInfo fi = null;

    try
    {
        fi = new FileInfo(netDllPath);
    }
    catch { }

    if (doInstall == true && fi != null && fi.Exists == false)
    {
        WriteLog("NOT FOUND: " + fi.FullName);
        return 1;
    }

    string serviceName = "dotnet-" + Path.GetFileNameWithoutExtension(dllFileName).ToLower();

    string exeName = Process.GetCurrentProcess().MainModule.FileName;

    string workingDir = Path.GetDirectoryName(fi.FullName);
    string fullText = string.Format(serviceFile, dllFileName, osName, workingDir,
            exeName, fi.FullName, serviceName);

    string serviceFilePath = $"/etc/systemd/system/{serviceName}.service";

    if (doInstall == true)
    {
        File.WriteAllText(serviceFilePath, fullText);
        WriteLog(serviceFilePath + " Created");
        ControlService(serviceName, "enable");
        ControlService(serviceName, "start");
    }
    else
    {
        if (File.Exists(serviceFilePath) == true)
        {
            ControlService(serviceName, "stop");
            File.Delete(serviceFilePath);
            WriteLog(serviceFilePath + " Deleted");
        }
    }

    return 0;
}

이 정도면 거의 틀을 갖췄군요. ^^ 이제 빌드하고 testd.dll과 testd.runtimeconfig.json 파일만 리눅스 시스템에 복사하면 서비스로써 완벽하게 동작할 수 있습니다.

[서비스 등록 및 시작]
$ sudo dotnet ./test.dll --install

[서비스 해제]
$ sudo dotnet ./test.dll --uninstall

[서비스 시작]
$ sudo systemctl start dotnet-testd

[서비스 중지-1]
$ sudo systemctl stop dotnet-testd

[서비스 중지-2]
$ sudo systemctl kill dotnet-testd

이 상태에서 여러분들의 업무 코드만 추가하면 됩니다. ^^ (그나저나 제가 리눅스에 잘 모르는 상태에서 만든 것이므로, 혹시 더 좋은 예제 코드가 있다면 덧글 부탁드립니다. ^^)

(이 글의 예제 프로젝트 코드는 github에 올려두었습니다.)





[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 7/7/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2019-09-06 09시01분
정성태
2021-02-26 05시41분
Creating a Windows Service with C#/.NET5
; https://devblogs.microsoft.com/ifdef-windows/creating-a-windows-service-with-c-net5/

[.NET] .NET6 로 Windows Service 만들기 (2022.08.08)
; https://blog.naver.com/vactorman/222842433947
정성태
2021-04-21 05시53분
[행인1] netcore3.1에서 systemctl stop 으로 실행하면 SIGINT 발생해서 cancelkey 이벤트가 들어왔는데,
net5로 프로젝트 업그레이드 이후엔 cancelkey 이벤트가 들어오지 않는데 원인을 아실까요ㅠ?
[guest]
2021-04-21 10시12분
.NET 5에서 SIGINT가 CancelKeyPress로 안 되는 것을 확인했습니다. 그런데, ^^; 답이 안 나오는군요. 아무래도 github의 dotnet repo에 직접 이슈를 제기하는 것이 좋을 듯합니다.
정성태
2021-04-22 05시26분
아래의 내용에 덧글을 달아주신 분이 해결 방법을 제시했습니다.

C# - Generic Host를 이용해 .NET 5로 리눅스 daemon 프로그램 만드는 방법
; https://www.sysnet.pe.kr/2/0/12608#14927

따라서, 현재 만들어 두신 소스 코드에서 다음의 serviceFile 문자열만,

https://github.com/stjeong/DotNetSamples/blob/master/NetCore/testd/Program.cs#L84

바꿔서 설정하시면 됩니다. (물론, 기존 등록된 service 파일의 경우 KillSignal=SIGINT 값을 삭제하고, KillMode=mixed 설정을 추가해도 됩니다.)

바뀐 소스 코드의 경우, systemctl stop/kill 모두 AppDomain.CurrentDomain.ProcessExit 이벤트 핸들러가 실행이 되는 것을 확인했습니다.
정성태
2023-01-27 08시24분
정성태

1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13347정성태5/10/20233933.NET Framework: 2118. C# - Semantic Kernel의 Prompt chaining 예제파일 다운로드1
13346정성태5/10/20233780오류 유형: 858. RDP 원격 환경과 로컬 PC 간의 Ctrl+C, Ctrl+V 복사가 안 되는 문제
13345정성태5/9/20235063.NET Framework: 2117. C# - (OpenAI 기반의) Microsoft Semantic Kernel을 이용한 자연어 처리 [1]파일 다운로드1
13344정성태5/9/20236328.NET Framework: 2116. C# - OpenAI API 사용 - 지원 모델 목록 [1]파일 다운로드1
13343정성태5/9/20234200디버깅 기술: 192. Windbg - Hyper-V VM으로 이더넷 원격 디버깅 연결하는 방법
13342정성태5/8/20234124.NET Framework: 2115. System.Text.Json의 역직렬화 시 필드/속성 주의
13341정성태5/8/20233912닷넷: 2114. C# 12 - 모든 형식의 별칭(Using aliases for any type)
13340정성태5/8/20233931오류 유형: 857. Microsoft.Data.SqlClient.SqlException - 0x80131904
13339정성태5/6/20234620닷넷: 2113. C# 12 - 기본 생성자(Primary Constructors)
13338정성태5/6/20234109닷넷: 2112. C# 12 - 기본 람다 매개 변수파일 다운로드1
13337정성태5/5/20234629Linux: 59. dockerfile - docker exec로 container에 접속 시 자동으로 실행되는 코드 적용
13336정성태5/4/20234391.NET Framework: 2111. C# - 바이너리 출력 디렉터리와 연관된 csproj 설정
13335정성태4/30/20234514.NET Framework: 2110. C# - FFmpeg.AutoGen 라이브러리를 이용한 기본 프로젝트 구성 - Windows Forms파일 다운로드1
13334정성태4/29/20234166Windows: 250. Win32 C/C++ - Modal 메시지 루프 내에서 SetWindowsHookEx를 이용한 Thread 메시지 처리 방법
13333정성태4/28/20233626Windows: 249. Win32 C/C++ - 대화창 템플릿을 런타임에 코딩해서 사용파일 다운로드1
13332정성태4/27/20233721Windows: 248. Win32 C/C++ - 대화창을 위한 메시지 루프 사용자 정의파일 다운로드1
13331정성태4/27/20233744오류 유형: 856. dockerfile - 구 버전의 .NET Core 이미지 사용 시 apt update 오류
13330정성태4/26/20233414Windows: 247. Win32 C/C++ - CS_GLOBALCLASS 설명
13329정성태4/24/20233622Windows: 246. Win32 C/C++ - 직접 띄운 대화창 템플릿을 위한 Modal 메시지 루프 생성파일 다운로드1
13328정성태4/19/20233260VS.NET IDE: 184. Visual Studio - Fine Code Coverage에서 동작하지 않는 Fake/Shim 테스트
13327정성태4/19/20233686VS.NET IDE: 183. C# - .NET Core/5+ 환경에서 Fakes를 이용한 단위 테스트 방법
13326정성태4/18/20235058.NET Framework: 2109. C# - 닷넷 응용 프로그램에서 SQLite 사용 (System.Data.SQLite) [1]파일 다운로드1
13325정성태4/18/20234406스크립트: 48. 파이썬 - PostgreSQL의 with 문을 사용한 경우 연결 개체 누수
13324정성태4/17/20234238.NET Framework: 2108. C# - Octave의 "save -binary ..."로 생성한 바이너리 파일 분석파일 다운로드1
13323정성태4/16/20234140개발 환경 구성: 677. Octave에서 Excel read/write를 위한 io 패키지 설치
13322정성태4/15/20234941VS.NET IDE: 182. Visual Studio - 32비트로만 빌드된 ActiveX와 작업해야 한다면?
1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...