- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的服务器上有大量图像文件(大约 900,000 个),我正在使用适用于 PHP 的 Azure 客户端库进行循环并将文件上传到 Azure Blob 存储。我的上传脚本运行良好大约 2 天,然后突然停止并输出以下错误。
Oct 19 01:28:14 ik1-315-17878 php: PHP Fatal error: Uncaught exception 'MicrosoftAzure\Storage\Common\Exceptions\ServiceException' with message 'Fail:#012Code: 403#012Value: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.#012details (if any):
AuthenticationFailed
Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.#012RequestId:e7f247d6-001e-0022-142e-48abcc000000#012Time:2017-10-18T16:28:14.4980791ZRequest date header too old: 'Wed, 18 Oct 2017 16:12:27 GMT'.' in /home/t-matsumoto/GAZOU/vendor/microsoft/azure-storage/src/Common/Internal/ServiceRestProxy.php:486#012Stack trace:#012#0 /home/t-matsumoto/GAZOU/vendor/microsoft/azure-storage/src/Common/Internal/ServiceRestProxy.php(404): MicrosoftAzure\Storage\Common\Internal\ServiceRestProxy::throwIfError(Object(GuzzleHttp\Psr7\Respon in /home/t-matsumoto/GAZOU/vendor/microsoft/azure-storage/src/Common/Internal/ServiceRestProxy.php on line 486
我已经搜索了原因,很可能是因为我的脚本发出该请求时的时间戳与 Azure 收到请求时的时间戳相比太旧。根据上面的错误信息,发出请求的时间是“Wed, 18 Oct 2017 16:12:27 GMT”,接收请求的时间是“2017-10-18T16:28:14.4980791Z”(大约晚了15分钟) 。但我仍然不明白的是,为什么我的脚本运行了一段时间没有错误,然后突然发生错误。谁能向我解释一下这个现象和解决方案,使我的脚本稳定运行,没有错误。
我的 php 脚本如下所示
require_once 'vendor/autoload.php';
use MicrosoftAzure\Storage\Common\ServicesBuilder;
use MicrosoftAzure\Storage\Common\ServiceException;
$connectionString = "DefaultEndpointsProtocol=http;AccountName=<accountNameHere>;AccountKey=<accountKeyHere>";
// Create blob REST proxy.
$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);
foreach ($myListFiles as $filename) {
$content = fopen($filename, "r");
$blob_name = "myblob";
//Upload blob
$blobRestProxy->createBlockBlob("mycontainer", $blob_name, $content);
}
我从此链接上传了示例脚本 https://learn.microsoft.com/en-us/azure/storage/blobs/storage-php-how-to-use-blobs
最佳答案
我认为@Gaurav Mantri 已经回答了你的问题:
Azure storage error using Python SDK
<小时/>但由于您有大量图像文件要上传到 Azure 存储,我建议使用 AzCopy要做到这一点。 AzCopy 是一个命令行实用程序,旨在使用具有最佳性能的简单命令将数据复制到 Microsoft Azure Blob、文件和表存储以及从 Microsoft Azure Blob、文件和表存储复制数据。
关于php - "Request date header too old"将大量文件上传到 blob 存储时发生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46825671/
我是一名优秀的程序员,十分优秀!