在 Amazon EC2 中,当我“克隆”时如何让它运行 python 脚本?那个例子?
中有一个脚本
/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将在这里尝试我不存在的 Linux 技能 - 创建一个运行
go.py
的 shell 脚本,并将符号链接添加到/etc/init.d/
中的 shell 脚本>/home/myser/go.sh
symlink
在我自己阅读了一些内容之后,
/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
symlink
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 yourgo.sh
is executable).