在 Amazon EC2 中,当我“克隆”时如何让它运行 python 脚本?那个例子?

发布于 2024-09-06 05:28:02 字数 111 浏览 3 评论 0原文

中有一个脚本

/home/myuser/go.py

假设我在启动新实例时如何运行该脚本 ? (我习惯使用亚马逊的点击式控制面板......)

Suppose I have a script in

/home/myuser/go.py

How do I run that script, when a new instance is booted? (I'm used to using the point-and-click control panel Amazon has...)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失与倦" 2024-09-13 05:28:02

我将在这里尝试我不存在的 Linux 技能 - 创建一个运行 go.py 的 shell 脚本,并将符号链接添加到 /etc/init.d/ 中的 shell 脚本>

/home/myser/go.sh

#!/bin/bash
python /home/myuser/go.py

symlink

ln -s /etc/init.d/go.sh /home/myuser/go.sh

在我自己阅读了一些内容之后,/etc/rc.local 可能是一个更好的地方。只需编辑它并在其中添加 /home/myuser/go.sh (再次确保您的 go.sh 可执行)。

I'm gonna try my nonexistent Linux skills here - create a shell script that runs your go.py and add a symlink to the shell script in /etc/init.d/

/home/myser/go.sh

#!/bin/bash
python /home/myuser/go.py

symlink

ln -s /etc/init.d/go.sh /home/myuser/go.sh

After reading up a bit myself, /etc/rc.local is probably a better place for this. Just edit it and add /home/myuser/go.sh there (again, make sure your go.sh is executable).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文