在 CentOS7、Ubuntu 16及以上版本均支持 systemd 配置,但需要注意:systemd 配置运行对应用程序有一定限制,这些被运行ELF程式必须考虑在 systemd 环境下工作的兼容性。
操作命令及配置文件;
cd /etc/systemd/system
nano 您的服务名.service[Unit]
Description=服务描述[Service]
WorkingDirectory=进程工作目录
ExecStart=可执行文件(ELF)
Restart=always
# Restart service after 3 seconds if the dotnet service crashes:
RestartSec=3
KillSignal=SIGINT
SyslogIdentifier=服务日志ID
User=root
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=falsesystemctl enable 您的服务名.service
systemctl daemon-reload
systemctl start 您的服务名.service
systemctl status 您的服务名.service