dotnet项目执行shell脚本实现简单的自动化部署

Posted raikay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dotnet项目执行shell脚本实现简单的自动化部署相关的知识,希望对你有一定的参考价值。

不要k8s、不要docker、不要Jenkins,只要一个部署脚本,只是一个小项目单台服务器,实现提交代码自动执行脚本,拉代码构建部署项目。

创建一个web api 项目,作为webhook,实现接收web请求后执行shell脚本

项目代码:
```c#
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.Diagnostics;

namespace ShellHandler.Controllers
{
[ApiController]
[Route("[controller]")]
public class HandlerController : ControllerBase
{
private readonly ILogger<HandlerController> _logger;

    public HandlerController(ILogger<HandlerController> logger)
    {
        _logger = logger;
    }

    [HttpPost]
    public string Execute(string fileName)
    {
        try
        {
            var processStartInfo = new ProcessStartInfo($"./{fileName}") { RedirectStandardOutput = true };
            var process = Process.Start(processStartInfo);
            if (process == null)
            {
                Console.WriteLine("Can not run shell .");
            }
            else
            {
                using (var sr = process.StandardOutput)
                {
                    while (!sr.EndOfStream)
                    {
                        var str = sr.ReadLine();
                        Console.WriteLine(str);
                    }

                    if (!process.HasExited)
                    {
                        process.Kill();
                    }
                }
            }
            return "ok";

        }
        catch (Exception ex)
        {
            _logger.LogInformation(ex.Message);
            return ex.Message;
        }
    }
}

}


在服务器部署当前项目

nohup dotnet ShellHandler.dll --urls http://0.0.0.0:8080 &


在项目根目录创建部署脚本`publish.sh`
```sh
#!/bin/bash
#杀死占用8081端口的进程
kill -9 $(lsof -i:8081 -t)
cd /home/web/web-demo/
#拉取代码
git pull
#发布项目到publish文件夹
dotnet publish -o publish
cd publish/
#后台运行项目
nohup dotnet WebDemo.dll --urls http://0.0.0.0:8081 &

添加执行权限

chmod a+x publish.sh

创建一个Demo项目部署到服务器,托管到gitee

把webhook地址添加到gitee的WebHooks,并指定脚本文件名

项目做一些改动,git提交代码

查看gitee触发记录

查看网站已经完成自动部署

相关文章:

Docker环境安装及基础命令使用
.Net Core项目使用Docker容器部署到Linux服务器
Linux系统Centos7部署DotNet Core项目及环境安装
dotnet项目执行shell脚本实现简单的自动化部署
jenkins实现dotnet项目持续集成、持续部署(CI/CD)
阿里云容器镜像服务提交代码自动构建Docker镜像

以上是关于dotnet项目执行shell脚本实现简单的自动化部署的主要内容,如果未能解决你的问题,请参考以下文章

shell实现SSH自动登陆

shell运用

Centos开机自动执行shell脚本启动tomcat服务器

自动化运维:写一个简单的Shell脚本(案例)

前端自动化 shell 脚本命令 与 shell-node 脚本命令 简单使用 之 es6 转译

Mac 上使用 Shell 脚本 + adb shell 实现简单的 Android 模拟点击自动化测试