部署jar包windows服务工具

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: 某个周末一个线上项目因为服务器自动重启导致了系统挂了,我们是通过jenkins部署的jar包所以需要手动重启项目,解决问题后准备调换部署方式让项目随系统自动启动,试用tomcat后发现启动慢,并且日常开发springboot都是使用内置tomcat启动,如果要保持和部署方式保持一致(避免本地代码执行和部署方式不一致导致的bug),需要配置外部tomcat比较麻烦,所以决定还是以java -jar命令方式启动并注册为window服务

背景

某个周末一个线上项目因为服务器自动重启导致了系统挂了,我们是通过jenkins部署的jar包所以需要手动重启项目,解决问题后准备调换部署方式让项目随系统自动启动,试用tomcat后发现启动慢,并且日常开发springboot都是使用内置tomcat启动,如果要保持和部署方式保持一致(避免本地代码执行和部署方式不一致导致的bug),需要配置外部tomcat比较麻烦,所以决定还是以java -jar命令方式启动并注册为window服务

项目地址:https://gitee.com/code2roc/deploy-jar-util

环境依赖

  • windows系统

  • 安装framework4.0

  • 安装jdk配置环境变量

    jdk可以使用免安装版本(1.8)点击bat文件快速一键配置,下载地址如下

    https://yunpan.360.cn/surl_y83kPfrK6n7 (提取码:c4f2)

功能介绍

工具包含【服务名称】【jar包路径】【部署端口】【执行结果】【操作按钮】五个部分

  • 服务名称

对应的就是安装后windows服务的名字

  • jar包路径

部署项目的jar文件物理路径

  • 部署端口

默认为空不指定使用配置文件中端口,指定后使用自定义端口

  • 执行结果

显示安装/卸载/启动/关闭服务适输出的操作日志

  • 操作按钮

在进行服务操作前必须将所有配置确定输入后点击保存配置按钮

安装/卸载/启动/停止四个按钮对应相关windows服务的操作

服务安装后默认停止状态,需要手动启动,服务启动方式为自动

点击启动服务后会自动弹出启动日志界面动态刷新日志内容,若关闭了日志窗口,则进入deploylog文件夹查看deploy.out.log文件,每次启动项目该文件内容自动重置清除

实现介绍

window服务安装

使用开源组件winsw(https://github.com/winsw/winsw/),获取编译好的exe运行文件和xml配置文件,调用cmd进行相关命令操作,例如安装操作如下所示,页面相关配置保存读取直接操作xml文件即可

  private void btn_InstallService_Click(object sender, EventArgs e)
        {
   
   
            string command = "deploy.exe install";
            StartCmd(AppDomain.CurrentDomain.BaseDirectory, command, FinishCommand);
        }
  public void StartCmd(String workingDirectory, String command, EventHandler FinsishEvent)
        {
   
   
            Process p = new Process();
            p.StartInfo.FileName = "cmd.exe";
            p.StartInfo.WorkingDirectory = workingDirectory;
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            p.EnableRaisingEvents = true;  // 启用Exited事件  
            p.Exited += FinsishEvent;   // 注册进程结束事件  
            p.Start();
            p.StandardInput.WriteLine(command);
            p.StandardInput.WriteLine("exit");
            p.StandardInput.AutoFlush = true;
            string strOuput = p.StandardOutput.ReadToEnd();
            txt_Result.Text = strOuput;
            //等待程序执行完退出进程
            p.WaitForExit();
            p.Close();
        }

服务状态监控

通过引入System.ServiceProcess程序集调用服务相关api

  public void InitOpStatus()
        {
   
   
            btn_InstallService.Enabled = false;
            btn_StartService.Enabled = false;
            btn_UnstallService.Enabled = false;
            btn_StopService.Enabled = false;
            var serviceControllers = ServiceController.GetServices();
            bool existservice = false;
            foreach (var service in serviceControllers)
            {
   
   
                if (service.ServiceName == txt_ServerName.Text)
                {
   
   
                    existservice = true;
                    break;
                }
            }
            if (existservice)
            {
   
   
                var server = serviceControllers.FirstOrDefault(service => service.ServiceName == txt_ServerName.Text);
                if (server.Status == ServiceControllerStatus.Running)
                {
   
   
                    //服务运行中允许停止
                    btn_StopService.Enabled = true;
                }
                else
                {
   
   
                    //服务未运行允许卸载和启动
                    btn_UnstallService.Enabled = true;
                    btn_StartService.Enabled = true;
                }
            }
            else
            {
   
   
                //无此服务允许安装
                btn_InstallService.Enabled = true;
            }

        }

启动日志显示

使用定时器,不断刷新deploylog\deploy.out.log日志文件

   System.Windows.Forms.Timer timer;
        public LogForm()
        {
   
   
            InitializeComponent();
        }

        private void LogForm_Load(object sender, EventArgs e)
        {
   
   
            timer = new System.Windows.Forms.Timer();
            //1秒间隔
            timer.Interval = 1000;
            //执行事件
            timer.Tick += (s, e1) =>
            {
   
   
                RefreshLogContent();
            };
            //开始执行
            timer.Start();
        }


        public void RefreshLogContent()
        {
   
   
            string logPath = AppDomain.CurrentDomain.BaseDirectory + "deploylog\\deploy.out.log";
            string logContent = ReadFileContent(logPath);
            SetTextCallback d = new SetTextCallback(SetText);
            this.txt_Log.Invoke(d, new object[] {
   
    logContent });
        }

        public string ReadFileContent(string FileFullName)
        {
   
   
            if (File.Exists(FileFullName))
            {
   
   
                System.IO.FileStream fs = new System.IO.FileStream(FileFullName, System.IO.FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
                string FileContent = "";
                try
                {
   
   
                    int fsLen = Convert.ToInt32(fs.Length);
                    byte[] heByte = new byte[fsLen];
                    int r = fs.Read(heByte, 0, heByte.Length);
                    FileContent = System.Text.Encoding.Default.GetString(heByte);
                }
                catch (Exception e)
                {
   
   
                    throw;
                }
                finally
                {
   
   
                    fs.Close();
                    fs.Dispose();
                }
                return FileContent;
            }
            else
            {
   
   
                return "";
            }

        }

        delegate void SetTextCallback(string text);

        private void SetText(string text)
        {
   
   
            txt_Log.Text = "";
            txt_Log.AppendText(text);
        }

        private void LogForm_FormClosed(object sender, FormClosedEventArgs e)
        {
   
   
            timer.Stop();
        }
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
目录
相关文章
|
3月前
|
NoSQL Redis Windows
windows服务器重装系统之后,Redis服务如何恢复?
windows服务器重装系统之后,Redis服务如何恢复?
75 6
|
29天前
|
安全 Windows
【Azure Cloud Service】在Windows系统中抓取网络包 ( 不需要另外安全抓包工具)
通常,在生产环境中,为了保证系统环境的安全和纯粹,是不建议安装其它软件或排查工具(如果可以安装,也是需要走审批流程)。 本文将介绍一种,不用安装Wireshark / tcpdump 等工具,使用Windows系统自带的 netsh trace 命令来获取网络包的步骤
67 32
|
25天前
|
Java 开发者
修改JAR文件工具
本文介绍了一款名为JarEditor的IDEA插件,该插件允许用户直接对JAR包内的文件进行增删改查操作,无需先行解压。通过简单的安装与使用步骤,大大简化了传统上需要解压缩、反编译、重新编译及打包的过程。此外,JarEditor还支持对混淆过的JAR文件进行字节码级别的修改,并提供了强大的搜索功能,支持大小写、全词匹配和正则表达式搜索。对于开发者而言,这款插件无疑极大提高了处理JAR文件的效率和便捷性。
54 14
|
29天前
|
网络安全 Windows
Windows server 2012R2系统安装远程桌面服务后无法多用户同时登录是什么原因?
【11月更文挑战第15天】本文介绍了在Windows Server 2012 R2中遇到的多用户无法同时登录远程桌面的问题及其解决方法,包括许可模式限制、组策略配置问题、远程桌面服务配置错误以及网络和防火墙问题四个方面的原因分析及对应的解决方案。
|
1月前
|
监控 安全 网络安全
使用EventLog Analyzer日志分析工具监测 Windows Server 安全威胁
Windows服务器面临多重威胁,包括勒索软件、DoS攻击、内部威胁、恶意软件感染、网络钓鱼、暴力破解、漏洞利用、Web应用攻击及配置错误等。这些威胁严重威胁服务器安全与业务连续性。EventLog Analyzer通过日志管理和威胁分析,有效检测并应对上述威胁,提升服务器安全性,确保服务稳定运行。
|
2月前
|
边缘计算 安全 网络安全
|
2月前
|
开发框架 .NET API
Windows Forms应用程序中集成一个ASP.NET API服务
Windows Forms应用程序中集成一个ASP.NET API服务
106 9
|
2月前
|
应用服务中间件 Apache Windows
免安装版的Tomcat注册为windows服务
免安装版的Tomcat注册为windows服务
135 3
|
2月前
|
Java 关系型数据库 MySQL
java控制Windows进程,服务管理器项目
本文介绍了如何使用Java的`Runtime`和`Process`类来控制Windows进程,包括执行命令、读取进程输出和错误流以及等待进程完成,并提供了一个简单的服务管理器项目示例。
43 1
|
2月前
|
XML 网络安全 数据格式
Kali渗透测试:Windows事件管理工具wevtutil的使用方法(一)
Kali渗透测试:Windows事件管理工具wevtutil的使用方法(一)
88 2
下一篇
DataWorks