Microsoft MVP성태의 닷넷 이야기
Linux: 18. C# - .NET Core Console로 리눅스 daemon 프로그램 만드는 방법 [링크 복사], [링크+제목 복사]
조회: 16116
글쓴 사람
정성태 (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분
정성태

... 16  17  18  19  20  21  22  23  24  25  26  27  28  29  [30]  ...
NoWriterDateCnt.TitleFile(s)
12868정성태12/7/20216825오류 유형: 770. twine 업로드 시 "HTTPError: 400 Bad Request ..." 오류 [1]
12867정성태12/7/20216538개발 환경 구성: 612. 파이썬 - PyPI 패키지 만들기 (3) entry_points 옵션
12866정성태12/7/202113910오류 유형: 769. "docker build ..." 시 "failed to solve with frontend dockerfile.v0: failed to read dockerfile ..." 오류
12865정성태12/6/20216606개발 환경 구성: 611. 파이썬 - PyPI 패키지 만들기 (2) long_description, cmdclass 옵션
12864정성태12/6/20215083Linux: 46. WSL 환경에서 find 명령을 사용해 파일을 찾는 방법
12863정성태12/4/20216965개발 환경 구성: 610. 파이썬 - PyPI 패키지 만들기
12862정성태12/3/20215716오류 유형: 768. Golang - 빌드 시 "cmd/go: unsupported GOOS/GOARCH pair linux /amd64" 오류
12861정성태12/3/20217941개발 환경 구성: 609. 파이썬 - "Windows embeddable package"로 개발 환경 구성하는 방법
12860정성태12/1/20216047오류 유형: 767. SQL Server - 127.0.0.1로 접속하는 경우 "Access is denied"가 발생한다면?
12859정성태12/1/202112169개발 환경 구성: 608. Hyper-V 가상 머신에 Console 모드로 로그인하는 방법
12858정성태11/30/20219427개발 환경 구성: 607. 로컬의 USB 장치를 원격 머신에 제공하는 방법 - usbip-win
12857정성태11/24/20216937개발 환경 구성: 606. WSL Ubuntu 20.04에서 파이썬을 위한 uwsgi 설치 방법
12856정성태11/23/20218674.NET Framework: 1121. C# - 동일한 IP:Port로 바인딩 가능한 서버 소켓 [2]
12855정성태11/13/20216078개발 환경 구성: 605. Azure App Service - Kudu SSH 환경에서 FTP를 이용한 파일 전송
12854정성태11/13/20217628개발 환경 구성: 604. Azure - 윈도우 VM에서 FTP 여는 방법
12853정성태11/10/20216004오류 유형: 766. Azure App Service - JBoss 호스팅 생성 시 "This region has quota of 0 PremiumV3 instances for your subscription. Try selecting different region or SKU."
12851정성태11/1/20217360스크립트: 34. 파이썬 - MySQLdb 기본 예제 코드
12850정성태10/27/20218510오류 유형: 765. 우분투에서 pip install mysqlclient 실행 시 "OSError: mysql_config not found" 오류
12849정성태10/17/20217644스크립트: 33. JavaScript와 C#의 시간 변환 [1]
12848정성태10/17/20218615스크립트: 32. 파이썬 - sqlite3 기본 예제 코드 [1]
12847정성태10/14/20218469스크립트: 31. 파이썬 gunicorn - WORKER TIMEOUT 오류 발생
12846정성태10/7/20218245스크립트: 30. 파이썬 __debug__ 플래그 변수에 따른 코드 실행 제어
12845정성태10/6/20218081.NET Framework: 1120. C# - BufferBlock<T> 사용 예제 [5]파일 다운로드1
12844정성태10/3/20216125오류 유형: 764. MSI 설치 시 "... is accessible and not read-only." 오류 메시지
12843정성태10/3/20216581스크립트: 29. 파이썬 - fork 시 기존 클라이언트 소켓 및 스레드의 동작파일 다운로드1
12842정성태10/1/202124742오류 유형: 763. 파이썬 오류 - AttributeError: type object '...' has no attribute '...'
... 16  17  18  19  20  21  22  23  24  25  26  27  28  29  [30]  ...