在Debian系统中,要导入一个新的服务文件,你需要将其放置在/etc/systemd/system/
目录下
my-new-service.service
的文件:sudo nano /etc/systemd/system/my-new-service.service
[Unit]
Description=My New Service
After=network.target
[Service]
User=myuser
WorkingDirectory=/path/to/working/directory
ExecStart=/path/to/your/executable
Restart=always
[Install]
WantedBy=multi-user.target
这里是一个简单的示例,你可以根据自己的需求进行修改。
保存并关闭文件。在编辑器中保存更改并关闭文件。
重新加载systemd配置。要使新的服务文件生效,你需要重新加载systemd的配置:
sudo systemctl daemon-reload
sudo systemctl enable my-new-service.service
sudo systemctl start my-new-service.service
sudo systemctl status my-new-service.service
现在你已经成功导入了一个新的服务文件,并在Debian系统中启用了它。