问题描述

在App Service中部署镜像文件,发现镜像一直没有部署,重启App Service服务也无效果。

DockerFile如下:

FROM crunchgeek/php-fpm:7.0

# 设置时区
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone # apt 安装supervisor nginx python-pip
RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list \
&& apt-get clean && apt-get update
RUN apt-get install -y openssh-server supervisor nginx python-pip imagemagick
RUN pip install -i https://mirrors.aliyun.com/pypi/simple XlsxWriter # 开启ssh
RUN echo "root:Docker!" | chpasswd
COPY conf/ssh/sshd_config /etc/ssh/
RUN mkdir -p /tmp
COPY conf/ssh/ssh_setup.sh /tmp
RUN chmod +x /tmp/ssh_setup.sh \
&& (sleep 1;/tmp/ssh_setup.sh 2>&1 > /dev/null) # 配置supervisor
RUN mkdir -p /var/log/supervisor
COPY conf/supervisor/supervisord.conf /etc/supervisor/supervisord.conf # 配置nginx
RUN mkdir -p /var/log/nginx
COPY conf/nginx/nginx.conf /etc/nginx/nginx.conf
COPY conf/nginx/phpdemotest.conf /etc/nginx/conf.d/phpdemotest.conf # 配置php
RUN mkdir -p /var/log/php
COPY conf/php/php.ini /usr/local/etc/php/php.ini
COPY conf/php/www.conf /usr/local/etc/php-fpm.d/www.conf # 暴露端口
EXPOSE 80
EXPOSE 2222 # 处理项目文件
WORKDIR /
COPY app /app
RUN mkdir -p /app/phpdemotest/cache && mkdir -p /app/phpdemotest/uploads
RUN chmod -R 777 /app # 启动脚本
COPY run.sh /run.sh
RUN chmod +x /run.sh
ENTRYPOINT ["/run.sh"]

在App Service的 Default Docker 日志文件中发现错误:

2022-02-06T23:59:17.443332417Z + /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
2022-02-06T23:59:17.443373922Z + /usr/sbin/sshd
2022-02-06T23:59:18.452607133Z 2022-02-07 07:59:18,452 CRIT Supervisor running as root (no user in config file)
2022-02-06T23:59:18.456877344Z 2022-02-07 07:59:18,456 INFO supervisord started with pid 8
2022-02-06T23:59:19.465631733Z 2022-02-07 07:59:19,463 INFO spawned: 'nginx' with pid 12
2022-02-06T23:59:19.466909186Z 2022-02-07 07:59:19,466 INFO spawned: 'php-fpm' with pid 13
2022-02-06T23:59:19.494100139Z 2022-02-07 07:59:19,493 INFO exited: nginx (exit status 1; not expected)
2022-02-06T23:59:20.857528223Z 2022-02-07 07:59:20,853 INFO spawned: 'nginx' with pid 31
2022-02-06T23:59:20.857568522Z 2022-02-07 07:59:20,854 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-02-06T23:59:20.870432633Z 2022-02-07 07:59:20,870 INFO exited: nginx (exit status 1; not expected)
2022-02-06T23:59:22.879193415Z 2022-02-07 07:59:22,878 INFO spawned: 'nginx' with pid 32
2022-02-06T23:59:22.893106810Z 2022-02-07 07:59:22,892 INFO exited: nginx (exit status 1; not expected)
2022-02-06T23:59:25.913145415Z 2022-02-07 07:59:25,907 INFO spawned: 'nginx' with pid 33
2022-02-06T23:59:25.922158533Z 2022-02-07 07:59:25,921 INFO exited: nginx (exit status 1; not expected)
2022-02-06T23:59:26.927725113Z 2022-02-07 07:59:26,927 INFO gave up: nginx entered FATAL state, too many start retries too quickly 2022-02-07T00:09:25.488220881Z + /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
2022-02-07T00:09:25.488718279Z + /usr/sbin/sshd
2022-02-07T00:09:26.467977299Z 2022-02-07 08:09:26,467 CRIT Supervisor running as root (no user in config file)
2022-02-07T00:09:26.471996285Z 2022-02-07 08:09:26,471 INFO supervisord started with pid 8
2022-02-07T00:09:27.477601588Z 2022-02-07 08:09:27,475 INFO spawned: 'nginx' with pid 12
2022-02-07T00:09:27.479159791Z 2022-02-07 08:09:27,478 INFO spawned: 'php-fpm' with pid 13
2022-02-07T00:09:27.504344436Z 2022-02-07 08:09:27,504 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:09:28.696030787Z 2022-02-07 08:09:28,695 INFO spawned: 'nginx' with pid 31
2022-02-07T00:09:28.696917389Z 2022-02-07 08:09:28,696 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-02-07T00:09:28.709830112Z 2022-02-07 08:09:28,709 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:09:30.721563220Z 2022-02-07 08:09:30,718 INFO spawned: 'nginx' with pid 32
2022-02-07T00:09:30.733000942Z 2022-02-07 08:09:30,732 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:09:33.753600087Z 2022-02-07 08:09:33,750 INFO spawned: 'nginx' with pid 33
2022-02-07T00:09:33.770204819Z 2022-02-07 08:09:33,769 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:09:33.771144421Z 2022-02-07 08:09:33,770 INFO gave up: nginx entered FATAL state, too many start retries too quickly 2022-02-07T00:18:34.847730464Z + /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
2022-02-07T00:18:34.852556800Z + /usr/sbin/sshd
2022-02-07T00:18:35.682198497Z 2022-02-07 08:18:35,681 CRIT Supervisor running as root (no user in config file)
2022-02-07T00:18:35.685920425Z 2022-02-07 08:18:35,685 INFO supervisord started with pid 8
2022-02-07T00:18:36.693576944Z 2022-02-07 08:18:36,691 INFO spawned: 'nginx' with pid 12
2022-02-07T00:18:36.695261854Z 2022-02-07 08:18:36,694 INFO spawned: 'php-fpm' with pid 13
2022-02-07T00:18:36.720480795Z 2022-02-07 08:18:36,720 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:18:37.903152006Z 2022-02-07 08:18:37,898 INFO spawned: 'nginx' with pid 31
2022-02-07T00:18:37.905742221Z 2022-02-07 08:18:37,903 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-02-07T00:18:37.920186002Z 2022-02-07 08:18:37,919 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:18:39.933674870Z 2022-02-07 08:18:39,930 INFO spawned: 'nginx' with pid 32
2022-02-07T00:18:39.942568331Z 2022-02-07 08:18:39,942 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:18:42.961585686Z 2022-02-07 08:18:42,955 INFO spawned: 'nginx' with pid 33
2022-02-07T00:18:42.973046638Z 2022-02-07 08:18:42,972 INFO exited: nginx (exit status 1; not expected)
2022-02-07T00:18:42.974184633Z 2022-02-07 08:18:42,973 INFO gave up: nginx entered FATAL state, too many start retries too quickly

问题解答

从错误消息中发现,是 Nginx启动时候遇见错误 “ nginx entered FATAL state, too many start retries too quickly”。 最后发现是Nginx.config配置文件中格式错误,在修改后发布镜像后,App Service确没有拉取新的镜像,所以没有新镜像的部署日志。

这是因为App Service没有开启持续部署,当开启持续部署后,App Service会主动拉取最新的更新并自动完成部署。

PS: 当遇见镜像无法启动时,先在本地环境中验证镜像是否能成功启动,然后查看App Service的日志,从日志中定位具体问题。

参考资料

持续部署到 Azure 应用服务:https://docs.azure.cn/zh-cn/app-service/deploy-continuous-deployment?tabs=local

【Azure 应用服务】更新镜像后并重启应用服务,部署日志始终没有出现加载新镜像成功的日志的更多相关文章

  1. python通过重启线程,实现服务的热加载

    这个思路后来证明不能用于工作. 因为线程调用没有及时返回,所以不能用这种方式来重启服务. 但作为脑洞,也应该作个记录. import os import shutil import datetime ...

  2. Centos系统创建用户oracle后,用该用户登陆系统,页面加载报错GConf error

    Linux 的 GConf error 解决办法 问题: Centos系统创建用户oracle后,用该用户登陆系统,页面加载报错,导致重新进入Centos系统后出现: GConf error:Fail ...

  3. Android系统定制——Download Android System 及加载system镜像文件

    定制android系统(配置及相关系统的镜像文件),具体可参考:Driver_All_in_One_V1.0——MT6735_6753.pdf文档,特别需要理解的是Download部分. 与之对应的软 ...

  4. 骚操作:不重启 JVM,如何替换掉已经加载的类?

    Java对象行为 java.lang.instrument.Instrumentation 直接操作字节码 BTrace Arthas 三生万物 在遥远的希艾斯星球爪哇国塞沃城中,两名年轻的程序员正在 ...

  5. nginx设置反向代理后,页面上的js css文件无法加载

    问题现象: nginx配置反向代理后,网页可以正常访问,但是页面上的js css文件无法加载,页面样式乱了. (1)nginx配置如下: (2)域名访问:js css文件无法加载: (3)IP访问:j ...

  6. IDEA导出jar包后运行报错 找不到或无法加载主类

    开发工具:IDEA16 运行环境:ubuntu 问题:根据网上的Idea导出jar包的方法,将我的项目导出jar包后运行报错:找不到或无法加载主类.   为了找到这个原因,我重新搭建了一个测试例子,在 ...

  7. linux如何离线加载docker镜像?

    1. 在已经部署了镜像的机器上获取镜像 1.1 获取镜像名 docker images 1.2 打包选中对应的镜像 docker save <image_name> -o <imag ...

  8. [Jenkins]初次访问Jenkins,输入密码后,页面卡在空白界面一直未加载出内容_解决方案

    问题描述 安装Jenkins,初次访问Jenkins(http://localhost:8002,端口号根据各自设置而不同,本例是8002),输入Jenkins初始化的管理密码之后,浏览器中一直卡在空 ...

  9. intellij IDEA 更新java后不用重启tomcat

    最近项目大了,每次修改后重启都要等和很久,那个煎熬…… 为了解决这个问题,万能的Google  装了这个  JREBEL 5.63最新的 安装步骤: 一.IDEA在线搜索 jrebel  安装 二.破 ...

  10. 线上代码已变更,客户没有刷新浏览器,导致点击菜单后找不到相对路由js文件无法加载XXX路由,解决办法如下

    1,reload 方法,该方法强迫浏览器刷新当前页面. 语法:location.reload([bForceGet]) 参数: bForceGet, 可选参数, 默认为 false,从客户端缓存里取当 ...

随机推荐

  1. Kernel 内核支持的方法查询

    今天同事说自己的一个项目出现了报错如图: 报错的机器是 Windows XP 想找一个 windows XP的机器验证一下: 然后 想通过百度搜索确认一下 这个问题 但是发现基本上效果不大 改用了bi ...

  2. TypeScript工具类 Partial 和 Required 的详细讲解

    场景描述: 场景描述:一个接口(IPerson)有很多个的字段,可能有几百.而且这些字段都是必须的. 我们需要使用这个接口,但是我又不可能使用它的全部.可能只会使用几个. 我还必须要使用这接口.这个时 ...

  3. vue获取子组件的实例$el、$attrs和inheritAttrs的使用

    我的需求 有些时候,我们需要获取组件的DOM元素 有些小伙伴会说,这还不简单 直接使用this.$ref.xx不就可以了吗 我们来看一下,是不是我们想的那样简单 组件内容 <template&g ...

  4. Python 潮流周刊第 37 期(摘要)

    本周刊由 Python猫 出品,精心筛选国内外的 250+ 信息源,为你挑选最值得分享的文章.教程.开源项目.软件工具.播客和视频.热门话题等内容.愿景:帮助所有读者精进 Python 技术,并增长职 ...

  5. 手撕Vue-编译模板数据

    经上一篇编译指令数据后,我们已经可以将指令数据编译成具体需要展示的数据了,上一篇只是编译了指令数据,还没有编译模板数据,这一篇我们就来编译模板数据. 也就是 {{}} 这种模板的形式我们该如何编译,其 ...

  6. 微信小程序-页面跳转数据传递

    在之前的文章当中我们都实现了一个功能就是可以从上一个页面传递数据给下一个页面,那么我们能不能从下一个页面传递数据给上一个页面呢,答案是可以的. 所以说本文这次主要介绍的内容就是返回上一个页面时传递参数 ...

  7. 解决Edge浏览器提示“此网站已被人举报不安全”

    今天下午微软旗下的 Microsoft Edge 浏览器将百度搜索的跳转域名 (*.baidu.com/link?url=*) 封杀,百度搜索首页可以打开,但搜索任何关键词点击搜索结果都会被拦截. 当 ...

  8. Windows批处理文件初始化数据库

    前提是MySQL服务必须启动,Windows添加了MySQL的环境变量. 批处理文件: @ECHO OFF SET dbhost=127.0.0.1 SET dbuser=root SET dbpas ...

  9. Hello,World! 6.28

    代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!&q ...

  10. docker离线安装及设置默认存储目录

    一.离线安装Docker 在内网环境下,一般不能联网在线部署,这时候就需要以离线的方式安装docker.本文介绍在CentOS 7.6环境中离线安装docker的步骤. 1. 下载docker安装包 ...