gpt4 book ai didi

linux - 如何在 .service 脚本中使用环境变量

转载 作者:可可西里 更新时间:2023-11-01 11:48:23 25 4
gpt4 key购买 nike

我在 linux 服务器上有一个 elixir 项目。我创建了一个 .service 脚本,它将使用以下命令启动和停止应用程序

systemctl start "my_app".service
systemctl stop "my_app".service

.service 文件看起来像这样......

[Unit]
Description="example app_name daemon"

[Service]
Type=simple
User=root
Restart=on-failure
Environment=MIX_ENV=prod "PORT=4000"

WorkingDirectory="the file path to my app"

ExecStart=/usr/local/bin/mix phoenix.server

[Install]
WantedBy=multi-user.target

它按预期工作,唯一的异常(exception)是它不会读取环境变量。我可以像上面的 PORT=4000 一样,通过手动将它们添加到脚本中来授予应用程序对它们的访问权限。

我想知道 .service 文件是否有办法访问我服务器上的环境变量,这样我就不必在每次使用此脚本时都编写它们一个新的服务器。提前致谢

随时查看the repo如果您想了解有关该项目的更多信息! 👍

最佳答案

您正在寻找 [Service] 部分中的 EnvironmentFile= 指令。

EnvironmentFile=/path/to/some/textFile

阅读here了解更多信息。

关于linux - 如何在 .service 脚本中使用环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48829592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com