gpt4 book ai didi

startup - 谷歌计算引擎启动脚本 : Not running on startup

转载 作者:行者123 更新时间:2023-12-03 17:50:47 27 4
gpt4 key购买 nike

我试图在 GCE 上启动时让以下脚本在 CentOS 实例上运行。
我在实例名称上设置了自定义元数据“启动脚本”,并将以下脚本作为值。

该脚本不会在启动、重启或运行/usr/share/google/run-startup-scripts 时执行,但如果我在实例上本地创建它并在那里执行,则会执行

我错过了什么明显的东西?

#! /bin/bash
# Installs apache and a custom homepage
# 1234567 123456

#Get this servers name from the metadata server and use the header to authenticate
THIS_SERVER_NAME=$(curl http://metadata/computeMetadata/v1/instance/hostname -H "X-Google-Metadata-Request: True")
#Turn off IPtables firewall that comes installed
service iptables stop
#Install apache
yum install -y httpd
#start apache
service httpd start
#create custom default homepage for this server
cat <<EOF > /var/www/html/index.html
<html><body><h1>Hello World</h1>
<p>This is Server: $THIS_SERVER_NAME</p>
</body></html>
EOF

最佳答案

我的个人经验面临两个问题:

1) 需要交互的命令在启动时无法正常运行。例如,apt-get install 要求您确认该过程(是/否)?在这种情况下,您可以关闭交互并通过替换来传递"is"

yum install foo
apt-get install foo


yum -y --assumeyes install foo
apt-get -y --force-yes install foo

此外,如果您使用的是 Debian,则在任何命令之前的以下内容将抑制交互需求:
sudo DEBIAN_FRONTEND=noninteractive <your command here, e.g., apt-get -y install foo>

2) 另一个明显的问题是有时您必须等待该过程完成,这可能发生在您的实例显示为“正在运行”之后很久。

关于startup - 谷歌计算引擎启动脚本 : Not running on startup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22202597/

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