1,我是使用filezilla工具进行文件传输的 将文件传送到指定文件夹
2,创建服务使项目开机自启动
# vim /etc/systemd/system/名称.service
ps:若没有vim 运行 yum install vim 或者使用vi 也可以
[Unit]
Description=说明
[Service]
#文件起始路径 建议填写dll存放路径
WorkingDirectory=/usr/local/
ExecStart=/usr:/bin/dotnet dll文件 --urls 配置路径
[Install]
WantedBy=multi-user.target
esc 输入 :wq 进行保存
使用systemctl enable 名称 #设置开机自启动
systemctl daemon-reload #文件修改 运行 刷新文件
原文:https://www.cnblogs.com/ly1998/p/14087416.html