作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在 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
sudo DEBIAN_FRONTEND=noninteractive <your command here, e.g., apt-get -y install foo>
关于startup - 谷歌计算引擎启动脚本 : Not running on startup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22202597/
我是一名优秀的程序员,十分优秀!