Errors reported by CheckUpDown

Errors reported by CheckUpDown

Errors reported by CheckUpDown

Introduction to errors

Any client (e.g. your Web browser or our CheckUpDown robot) goes through the following cycle when it communicates with your Web server:

  • Obtain an IP address from the IP name of your site (the site URL without the leading ‘http://’). This lookup (conversion of IP name to IP address) is provided by domain name servers (DNSs).
  • Open an IP socket connection to that IP address.
  • Write an HTTP data stream through that socket.
  • Receive an HTTP data stream back from the Web server in response. This data stream contains status codes whose values are determined by the HTTP protocol. Parse this data stream for status codes and other useful information.

An error may occur in any of the above steps. Our CheckUpdown robot isolates any error and reports it as an error code for your account (as a clickable link) along with details of when the error was detected.

The error codes the client may receive are given below – follow the URL for each to see further discussion of the error and what further action we recommend.

0?? errors

Errors with a code in the range 001-099 indicate a fundamental failure to communicate, typically in the early steps above. Note these errors are not defined in the HTTP protocol – they are specific to our CheckUpDown service.

001 – Unknown Host
002 – I/O Exception
003 – Undefined HTTP Status Code
004 – Bad URL
005 – Host not reachable
006 – No connection
007 – I/O Interrupt
008 – Socket failure
009 – SSL secure socket failure
010 – Check word not found
011 – Socket Timeout

3?? errors

Errors with a code in the range 300-399 indicate a redirection of the Web site URL. As of September 2000, CheckUpDown follows some URL redirections (301, 302, 303, 307) automatically, so these should no longer be reported as an error.

300 – Multiple Choices
301 – Moved permanently
302 – Moved temporarily
303 – See other
304 – Not modified
305 – Use proxy
307 – Temporary Redirect

4?? errors

Errors with a code in the range 400-499 occur where the Web server – incorrectly or not – dislikes the HTTP data streams that the client sends to it. Quite rare.

400 – Bad request
401 – Unauthorized
403 – Forbidden
404 – Not found
405 – Method not allowed
406 – Not acceptable
407 – Proxy authentication required
408 – Request timeout
409 – Conflict
410 – Gone
411 – Length required
412 – Precondition failed
413 – Request entity too large
414 – Request URI too long
415 – Unsupported media type
416 – Requested Range not satisfiable
417 – Expectation failed

5?? errors

Errors with a code in the range 500-599 occur where the Web server reports an internal error in its operations.

500 – Internal server error
501 – Not implemented
502 – Bad gateway
503 – Service unavailable
504 – Gateway timeout
505 – HTTP version not supported

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/100480.html原文链接:https://javaforall.net

(0)
上一篇 2021年5月9日 下午6:00
下一篇 2021年5月9日 下午7:00


相关推荐

  • B站—【狂神说Java】JavaWeb入门到实战—笔记

    B站—【狂神说Java】JavaWeb入门到实战—笔记JavaWebJavaWeb1、基本概念web开发:·web,网页的意思,www.baidu.com·静态web。html,sss。提供给所有人看的数据始终不会发生变化!动态web。淘宝,几乎是所有的网站;。提供给所有人看的数据始终会发生变化,每个人在不同的时间,不同的地点看到的信息各不相同!。技术栈:Servlet/ISP,ASP,PHP…

    2022年5月28日
    41
  • python中创建列表的方法_python中readlines

    python中创建列表的方法_python中readlines创建python列表方法一:直接创建列表a=[1,2,3,4,5]print(a)/usr/local/bin/python3.8/Users/sataniya/PycharmProjects/demo/demo.py[1,2,3,4,5]方法二:使用list方法a=list(“hello”)print(a)/usr/local/bin/p…

    2022年8月31日
    5
  • 以太坊私有链搭建_以太坊节点减少

    以太坊私有链搭建_以太坊节点减少网上关于如何搭建私链的文章很多,但是看来看去都是一样的,千篇一律,想找点不一样,新鲜的知识很难,本文总结归纳那些文章的内容,从使用私链的角度出发写了一篇比较全面的博客,内容包含以下几点:windows单节点 windows多节点 linux创建节点并,windows远程使用linux节点 linux节点和Windows节点建立连接(网络原因,提供思路)1.windows单节…

    2022年10月8日
    4
  • HOG特征可视化

    HOG特征可视化可视化说明在之前博客 HOG 原理及 OpenCV 实现中 我们解释了 HOG 算法的原理 最终提取到的特征就是一串向量 其实我们并不知道它具体是什么样子 也不知道它到底是不是能体现目标区域与非目标区域的差异 为了解决这个问题 我们需要对 HOG 特征做可视化处理 HOG 特征首先去计算每个像素的梯度 然后建立滑动窗口 在滑动窗中建立滑动块 在块中建立等分的单元 cell 我们仔细思考下这个过程 一个块在

    2025年11月19日
    4
  • PyCharm 调试时,底下几个按钮的含义

    PyCharm 调试时,底下几个按钮的含义1 showexecutio F10 显示当前所有断点 2 stepover F8 单步调试 若函数 A 内存在子函数时 不会进入子函数内执行单步调试 而是把子函数当作一个整体 一步执行 3 stepinto F7 单步调试 若函数 A 内存在子函数 a 时 会进入子函数 a 内执行单步调试 4 stepintomyco Alt Shift F7 执行下一行但忽略 libraries 导入库的语句 5 forcestepint Alt Shift F7 执

    2026年3月26日
    2
  • C语言与Java标识符的区别,Java和C语言的区别

    C语言与Java标识符的区别,Java和C语言的区别学过编程的都知道 Java 和 C 语言 它们两者之间有什么区别呢 下面小编带你去了解一下 1 基本区别 C 语言是全面向过程 Java 是面向对象的 JAVA 是可以跨平台的 而 C 语言不能 但能够直接操作硬件 并且生成机器码的效率高 C 语言的精髓是 C 语言多了一个指针 想要学好 C 语言 指针就必须学好 JAVA 是没有指针的 2 语法区别 JAVA 是从可以算是从 C 发展而来的 因此 Java 与 C 语言的语法比较类似的 3

    2026年3月18日
    2

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号