507 存储空间不足

HTTP 507 Insufficient Storage 服务器错误响应 状态代码表示由于服务器没有足够的可用存储空间来成功完成请求,因此无法执行操作。

此状态代码最初是在 Web 分布式创作和版本控制 ( WebDAV ) 的上下文中使用,但已传播到其他用例,以描述服务器资源耗尽的情况。此错误的常见原因可能是服务器目录可用空间不足、操作所需 RAM 不足或达到内部限制(例如特定于应用程序的内存限制)。导致此错误的请求不一定需要包含内容,因为它可能是一个请求,如果成功,将在服务器上创建资源。

此问题被认为是暂时的,与 413 Content Too Large 不同,后者表示无论服务器资源限制如何,客户端请求对服务器来说都太大而无法处理。

状态

http
507 Insufficient Storage

示例

507 响应表明存储问题

以下请求尝试将文件上传到存储空间不足的服务器。服务器使用 507 响应以指示其资源已耗尽

http
POST /upload HTTP/1.1
Host: example.com
Content-Type: image/jpeg
Content-Length: 123456

[JPG file data]
http
HTTP/1.1 507 Insufficient Storage
Date: Mon, 22 Jul 2024 10:00:00 GMT
Server: Apache/2.4.41 (Unix)
Content-Type: text/html; charset=UTF-8
Content-Length: 230

<html>
<head>
  <title>507 Insufficient Storage</title>
</head>
<body>
  <h1>Insufficient Storage</h1>
  <p>The server is unable to store the included resource to complete the request.</p>
  <p>Please try again later.</p>
</body>
</html>

规范

规范
RFC 4918
# 第 11.5 节

另请参阅