ASP.NET Core-Linux发布部署
2021-04-21 16:27
标签:ram ase restart 内容 文件 art 添加 进程 err donet run xxx.init中添加如下内容: ASP.NET Core-Linux发布部署 标签:ram ase restart 内容 文件 art 添加 进程 err 原文地址:https://www.cnblogs.com/fanfan-90/p/12249972.html
编译运行项目:
dotnet run -c Release --Release版本
发布项目:dotnet publish -o /output -c Release
运行项目:dotnet xxx.dll //编译好的项目直接运行即可
后台运行项目:nohup dotnet xxx.dll & (ps:必须使用exit退出终端,否则后台进程会退出)
推荐使用supervisor运行项目:
yum install supervisor
systemctl start supervisord.service
touch /etc/supervisord.d/xxx.ini --添加一个项目的配置文件
systemctl restart supervisord.service[program:coreweb1]
directory=/application/publish/CoreWeb
command=/usr/bin/dotnet /application/publish/CoreWeb/CoreWeb.dll
autostart=true
autorestart=true
stdout_logfile=/application/publish/logs/out.log
stderr_logfile=/application/publish/logs/err.log
下一篇:JS执行上下文
文章标题:ASP.NET Core-Linux发布部署
文章链接:http://soscw.com/index.php/essay/77682.html