我有一个运行ubuntu 20.04的实例。我已经通过在线GUI"连接"工具登录到控制台。在ubuntu实例上,我添加了一个包含以下内容的服务文件:
linux_setup
:
[Unit]
Description=my app
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=ubuntu
ExecStart=python3 app.py file:///$PWD/LOG --port 8080
[Install]
WantedBy=multi-user.target
我现在想在我的实例中启动此操作。为此,我执行以下步骤:
ubuntu@ip-172-31-1-50:~$ ls
app-folder
ubuntu@ip-172-31-1-50:~$ cd app-folder
ubuntu@ip-172-31-1-50:~/app-folder$ ls
LICENSE LOG README.md datasource app.py linux_setup.service requirements.txt test
ubuntu@ip-172-31-1-50:~/app-folder$ sudo systemctl start linux_setup
Failed to start linux_setup.service: Unit linux_setup.service not found.
ubuntu@ip-172-31-1-50:~/app-folder$
显然,似乎没有找到linux_setup.service,但它应该在那里。如何正确启动此安装文件?
我最终使用以下方法下载并部署了一个单元文件:
sudo wget [your_file_url]
sudo cp service_name.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl start service_name
sudo systemctl enable service_name
sudo journalctl -f -u service_name