zoukankan      html  css  js  c++  java
  • Topshelf 创建.net服务整理和安装步骤(转)

    Topshelf 创建.net服务整理和安装步骤

    时间:1年前   作者:庞顺龙   浏览:554   [站内原创,转载请注明出处]

    标签: Topshelf  

    Topshelf 创建.net服务整理和安装步骤

    windowsService和topshelf服务区别请看 → windowsSevice程序和topshelf程序创建服务对比

    Topshelf下载地址https://github.com/Topshelf/Topshelf/downloads

    官网http://topshelf-project.com/

    文档http://docs.topshelf-project.com/en/latest/

    1、创建项目

    2、添加Topshelf,使用nuget安装最新的topshelf程序包

    3、编写测试代码,直接贴Program类代码

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    using System.Timers;
    using Topshelf;
     
    namespace TopShelfConsoleApplication
    {
        public class TownCrier
        {
            TopshelfClass topshelfClass = new TopshelfClass();
            readonly Timer _timer;
            public TownCrier()
            {
                //设定了一个 1000 毫秒的服务执行间隔  
                _timer = new Timer(1000) { AutoReset = true };
                _timer.Elapsed += new ElapsedEventHandler(topshelfClass.Test);
            }
            public void Start() { _timer.Start(); }
            public void Stop() { _timer.Stop(); }
        }
     
        public class Program
        {
            public static void Main()
            {
                HostFactory.Run(x =>
                {
                    x.Service<TownCrier>(s =>
                    {
                        s.ConstructUsing(name => new TownCrier());
                        s.WhenStarted(tc => tc.Start());
                        s.WhenStopped(tc => tc.Stop());
                    });
                    x.RunAsLocalSystem();
                    x.SetDescription("Topshlef服务描述......");
                    x.SetDisplayName("TopshlefTest");
                    x.SetServiceName("TopshlefTest");
                });
            }
        }
    }

    TopshelfClass处理类

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    using System;
    using System.IO;
    using System.Timers;
     
    namespace TopShelfConsoleApplication
    {
        public class TopshelfClass
        {
            public void Test(object source, ElapsedEventArgs e)
            {
                string path = "F:\TopshelfTest\TopshelfTest.txt";
                FileStream fs = new FileStream(path, FileMode.Append);
                StreamWriter sw = new StreamWriter(fs);
                sw.WriteLine(DateTime.Now.ToString());
                sw.Close();
                fs.Close();
            }
        }
    }

    具体说明请参照官网给的技术解释文档,我就不在这里解释代码咯:https://topshelf.readthedocs.org/en/latest/configuration/quickstart.html

    我只说明一点:上面代码设置为1秒执行一次,在txt文件追加下时间戳,为了防止本地开发测试的调试问题,可以设置属性:

    4、发布部署

    a、发布部署包,自行处理

    b、进入cmd命令,进入部署包目录,找到exe文件执行install安装命令,如下图:

    c、查看本机服务,可见已经安装成功:

    d、安装n个相同服务使用命令:-instance " test1" install

    e、常用命令

    1
    2
    3
    4
    5
    install:ConsoleApplication1.exe install
    start:ConsoleApplication1.exe start ,执行后服务被启动
    stop:ConsoleApplication1.exe stop ,执行后服务被停止
    uninstall:ConsoleApplication1.exe uninstall,执行后服务被卸载
    -instance:  ConsoleApplication1.exe -instance " test1" install

    5、测试服务运行,开启两个服务,结果如下:

    至此,简单的topshelf服务使用就完成咯~~~~~

    庞顺龙最后编辑于:1年前

     

    内容均为作者独立观点,不代表八零IT人立场,如涉及侵权,请及时告知。

    本站文章除注明转载外,均为本站原创,欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创和谐网络社区。
    转载请注明:文章转载自-八零IT人 [http://www.80iter.com]
    本文标题:Topshelf 创建.net服务整理和安装步骤 
    本文地址:http://www.80iter.com/blog/1451523192435464 
     
  • 相关阅读:
    366. Find Leaves of Binary Tree输出层数相同的叶子节点
    716. Max Stack实现一个最大stack
    515. Find Largest Value in Each Tree Row查找一行中的最大值
    364. Nested List Weight Sum II 大小反向的括号加权求和
    156. Binary Tree Upside Down反转二叉树
    698. Partition to K Equal Sum Subsets 数组分成和相同的k组
    244. Shortest Word Distance II 实现数组中的最短距离单词
    187. Repeated DNA Sequences重复的DNA子串序列
    java之hibernate之基于主键的双向一对一关联映射
    java之hibernate之基于主键的单向一对一关联映射
  • 原文地址:https://www.cnblogs.com/janealer/p/7843231.html
Copyright © 2011-2022 走看看