登录
首页 >  Golang >  Go问答

如何让我的应用程序在 Ubuntu 中后台运行

来源:stackoverflow

时间:2024-04-15 14:09:32 501浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《如何让我的应用程序在 Ubuntu 中后台运行》,聊聊,我们一起来看看吧!

问题内容

我在 ubuntu 实例中创建了一个服务,方法是将其添加到 systemd,如下所示:

sudo systemctl enable myservice.service

created symlink /etc/systemd/system/multi-user.target.wants/myservice.service → /etc/systemd/system/myservice.service.

我的 myservice.service 中的设置是:

[unit]
description=myserviceservice

[service]
restart=always
type=simple
execstart=/home/myservice-app/core/core

[install]
wantedby=multi-user.target

这是我检查状态时的错误:

Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: myservice.service: Main process exited, code=exited, status=1/FAILURE
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: myservice.service: Failed with result 'exit-code'.
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: myservice.service: Scheduled restart job, restart counter is at 5.
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: Stopped myserviceService.
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: myservice.service: Start request repeated too quickly.
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: myservice.service: Failed with result 'exit-code'.
Feb 02 06:51:16 myservice-ubuntu-app systemd[1]: Failed to start myservice Service.

我做错了什么?该服务在前台正常运行,没有错误,只是该服务难以运行。


解决方案


如果您的 Go 程序能够正常启动(意味着不是作为服务,而是从命令行手动启动),请检查这是否是策略问题。

例如,如果未安装在系统路径(如 /usr/local/bin)中,则 SELinux policy 可能会阻止 Go 二进制文件启动。
service definition uses relative instead of absolute pathssame here)。
或者拨打 wrong user

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《如何让我的应用程序在 Ubuntu 中后台运行》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>