docker镜像下载出现:received unexpected HTTP status: 500 Internal Server Error

1、镜像下载总是出现报错:received unexpected HTTP status: 500 Internal Server Error

2、尝试多种方法:

①阿里云docke加速器;注册之后,配置好重新下载依然出现这种情况;

②尝试加上版本号;

原先我是直接复制https://hub.docker.com/r/library/上的:

之后改成这样:

docker pull tomcat:9.0.30

直接去掉后面只留版本号,这样马上就下载好了

原文地址:https://www.cnblogs.com/yukarin/p/12241048.html

时间: 2024-10-05 06:30:33

docker镜像下载出现:received unexpected HTTP status: 500 Internal Server Error的相关文章

docker push 报错:received unexpected HTTP status: 500 Internal Server Error

解决办法:关闭selinux [[email protected] ~]# docker push 10.0.0.10:5000/nginx The push refers to a repository [10.0.0.10:5000/nginx] 22439467ad99: Retrying in 1 second b4a29beac87c: Retrying in 1 second 488dfecc21b1: Retrying in 1 second received unexpected

HTTP Status 500 ? Internal Server Error

getWriter()和getOutputStream()不能同时调用 HTTP Status 500 ? Internal Server Error Type Exception Report Message getWriter() has already been called for this response Description The server encountered an unexpected condition that prevented it from fulfilli

Tomcat 提示 HTTP Status 500 – Internal Server ErrorTomcat 提示 HTTP Status 500 – Internal Server Error

错误信息: 1 HTTP Status 500 – Internal Server Error 2 Type Exception Report 3 4 Message Error instantiating servlet class [Servlet.BeerSelect] 5 6 Description The server encountered an unexpected condition that prevented it from fulfilling the request. 7

zuul网管配置其他服务时 HTTP Status 500 – Internal Server Error

1.这个错误是由三个原因导致的 (1).我在给类的接口命名的时候前面少加了一个/ (2)给zuul配置路由的时候多加了个服务名,serviceId名称就是spring的name,而不是eureka注入服务的那个名称 spring: application: name: worksserver routes: works: #works服务配置 path: /works/** #制定好path和serviceId,所有以path开头的请求都会被路由到对应的服务.如下面/hiapi/**被路由到se

Tomcat报错 HTTP Status 500 – Internal Server Error?

问题:在IDEA中编写Servlet实现类并在web.xml中配置好servlet信息之后,页面访问编写的出现了如下错误: 问题分析: 通过Root Cause可以看出是Jdk版本不匹配的问题:我的编译时候的版本和运行时的版本不一致,编译的版本是JDK11,运行时的版本是JDK8. Java虚拟机做了规定,jdk1的版本号是45,只能执行[45.0-46)之间的字节码,JDK8可执行的范围代码在[45.0-53)之间,我的版本是55,那么就是JDK11,那么只能由JDK11之后的版 本来执行.所

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

错误提示: 原因: MIME类型错误. 之前添加json.woff.woff2映射,更换系统(Win7升Win10)后配置失效,在webconfig中删除映射即可,因为Win10自带上面3个MIME映射. 之前在使用Win7时也遇到过该情况,好像是因为没有添加映射.

Docker镜像下载&Docker镜像操作常用命令

Docker系统简介 Docker系统有两个程序:docker服务端和docker客户端.其中docker服务端是一个服务进程,管理着所有的容器.docker客户端则扮演着docker服务端的远程控制器,可以用来控制docker的服务端进程.大部分情况下,docker服务端和客户端运行在一台机器上. 检查docker版本 检查docker的版本,这样可以用来确认docker服务在运行并可通过客户端链接. 命令如下: [[email protected] ~]# docker version Cl

使用阿里云加速Docker镜像下载

docker镜像默认是从dockerhub中下载,速度比较慢.可以通过阿里的镜像进行加速,方法如下: 阿里镜像加速器 登陆阿里云账号,进入如下页面:https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors 设置加速器地址 第一步的页面中,有具体的设置方法.在mac上,如下图: 原文地址:https://www.cnblogs.com/junejs/p/12692191.html

配置 Docker 镜像下载的本地 mirror 服务

Docker registry 工具现在已经很好的支持了 mirror 功能,使用它可以配置一个本地的 mirror 服务,将 pull 过的镜像 cache 在本地,这样其它主机再次 pull 的时候会极大提高响应速度. 使用 docker-compose 启动 registry mirror 服务 以 ubuntu 为例,首先要安装 docker 和 docker-compose. 安装 docker $ sudo wget -qO- https://get.docker.com/ | sh