Click here to Skip to main content
15,886,724 members
Articles / Operating Systems / Linux

Deploying a Self Contained .NET Core Application on Linux and Run as a Daemon Process

Rate me:
Please Sign up or sign in to vote.
4.75/5 (8 votes)
2 Jan 2017CPOL3 min read 26.2K   9   3
How to deploy a self contained .NET Core application on Linux and run as a daemon process

Recently, I got a chance to play a little bit with .NET core on Linux where I developed an application in .NET core which I deployed on an Ubuntu 16.04 machine and configured to run it as a daemon process.

In this process, I learnt quite a few things which might be helpful for beginners in .NET core or for the folks who would like to play around with .NET core.

Choosing the Deployment Model

Two types of deployments can be created for .NET core applications:

  1. Framework-dependent deployment: As the name implies, framework-dependent deployment (FDD) relies on a shared system-wide version of .NET Core to be present on the target machine. Because, .NET Core is already present, it can be shared by multiple applications hosted on the target machine.
  2. Self-contained deployment: Unlike FDD, a self-contained deployment does not rely on any shared components to be present on the target machine. All components, including both .NET Core libraries and the .NET Core runtime are included with the application and are isolated from other .NET Core applications.

I chose self-contained deployment since I didn't intend to run any other application on the target system which would share a system wide .NET Core runtime.

Preparing for Self-Contained Deployment

  1. Open "project.json" and remove this piece of json property:
    JavaScript
    "type":"platform"
    Removing "type":"platform" attribute indicates that the framework is provided as a set of components local to our app, rather than as a system-wide platform package.
  2. Create a "runtimes" section in your project.json file that defines the platforms your app targets, and specify the runtime identifier of each platform that you target. See Runtime Identifier Catalog for a list of runtime identifiers. For example, the following "runtimes" section indicates that the app runs on 64-bit Windows 10 and on 64 bit Ubuntu 16.04.
    JavaScript
    "runtimes": {
    "ubuntu.16.04-x64": {},
    "win10-x64": {}
    }

    A complete "project.json" would look something like this:

    JavaScript
    {
    "version": "1.0.0-*",
    "buildOptions": {
    "debugType": "portable",
    "emitEntryPoint": true,
    "copyToOutput":["appsettings.json","anyfile.txt"] //any file you would 
                                                      //want to be copied to the output directory
    },
    "dependencies": {
    "Microsoft.EntityFrameworkCore.SqlServer":"1.1.0",
    "Microsoft.NETCore.App":"1.1.0", // All your dependencies goes here. 
                                     //All these packages will get restored during build.
    },
    "frameworks": {
    "netcoreapp1.0": {
    "imports":"dnxcore50"
    }
    },
    "runtimes": {
    "win10-x64": {},
    "osx.10.10-x64": {}
    },
    "publishOptions":{
    "include":["appsettings.release.json","anyfile.txt"] //any file you would 
                                                   //want to be included to your published package
    }

Publishing your Application Package

After you have debugged and tested the program, you can create the files to be deployed with your app for each platform that it targets by using <i>"dotnet publish"</i> command as follows:

dotnet publish -c release -r "ubuntu.16.04-x64" -o "publishDirectory"

Once you execute the above command, your app will be compiled with "release" configuration for runtime "ubuntu.16.04 x-64" and will be published to the publish directory.

Now deploy the package to the target system.

In this process, two tools come in very handy:

  • pscp.exe: An SCP client, i.e., command-line secure file copy to your target machine.
  • plink.exe: A command-line interface to the PuTTY backends which is SSH and Telnet client itself.

In my case, the deployment process was as simple as just transferring the published package to the target system and executing some command to install it as a daemon process on the target system.

So, my deployment script looks something as follows:

  1. Transferring published package:
    "pscp.exe" publishedPackage.zip remoteUser@remoteMachineIP:/home/publishedPackage.zip
  2. Install the package on target system and "daemonize" it:
    "plink.exe" remoteUser@remoteMachineIP -m "commands.txt"
    where "commands.txt" contains all the commands which are required to be executed on the target system to install and daemonize your application.
  3. A few tweaks here and there to run my application as a daemon process. "daemonize.sh", a templated bash script came in very handy in this process.

Run Your Deployed Application on Target Machine

After deploying the application when I ran it for the first time, it was a disappointing oops moment for me. I received an ugly error saying:

Failed to load /opt/dotnet/shared/Microsoft.NETCore.App/1.0.1/libcoreclr.so, error: libunwind.so.8: 
cannot open shared object file: No such file or directory<br />Failed to bind to CoreCLR at 
'/opt/dotnet/shared/Microsoft.NETCore.App/1.0.1/libcoreclr.so

After a little bit of research and googling around this error, I found that I need to install "libunwind" on the target machine.

"libunwind" is a portable C programming interface to determine the call-chain of a program. I assume that it works as an initial bridge between CoreCLR and Linux.

And I am done!! My application works like a charm!!

I faced quite a few limitations while developing my application (and I am sure there are hundreds more out there, since .NET Core is not yet that mature as a platform).

  • The Reflection API has changed a lot.
  • There is no support for ADO.NET disconnected architecture. No Datasets and DataAdapters!!

That's all folks! Hope this helps some of you who have just started playing with .NET Core.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionRun as a Daemon Process? Pin
Rojan Gh.15-Jul-17 1:29
professionalRojan Gh.15-Jul-17 1:29 
Questionlibunwind Pin
Expsy2-Jun-17 10:46
Expsy2-Jun-17 10:46 
Hi, noob here.
I received the same error too but there are different versions of it. I installed the libunwind8 with "apt-get install libunwind8" But it lead me to a weirder crash which is not nice. Could you tell me where and how did you get libunwind?
PraiseVery useful! Pin
Mahesh-Rama2-Jan-17 20:18
Mahesh-Rama2-Jan-17 20:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.