在Ubuntu中,要配置systemd服務自啟動,可以按照以下步驟操作:
.service
為擴展名,比如my_service.service
。[Unit]
Description=My Service
After=network.target
[Service]
Type=simple
ExecStart=/path/to/your/service
Restart=always
User=your_username
[Install]
WantedBy=multi-user.target
/etc/systemd/system/
目錄下。sudo systemctl daemon-reload
sudo systemctl enable my_service.service
sudo systemctl start my_service.service
這樣,你的服務就會在系統啟動時自動啟動。你也可以通過sudo systemctl status my_service.service
命令查看服務的狀態。