系统相关
首页 > 系统相关> > nginx – ClientError :(,DeserializationError(‘需要以下字段:detail’,))

nginx – ClientError :(,DeserializationError(‘需要以下字段:detail’,))

作者:互联网

我正在使用certbot and letencrypt为两个站点创建自己的SSL证书.

我在Ubuntu 16.0.4 LTS上运行nginx版本:nginx / 1.10.0

我运行以下命令:

me@yourbox:~$sudo letsencrypt certonly --webroot -w /path/to/www/foo -d foo.com\
-d www.foo.com -w /path/to/www/foobar -d foobar.com -d www.foobar.com

输入我的电子邮件地址后,收到以下错误消息:

An unexpected error occurred: `ClientError: (<Response [500]>,
DeserializationError('The following field are required: detail',))
Please see the logfiles in /var/log/letsencrypt for more details.`

以下是/var/log/letsencrypt/letsencrypt.log的内容:

2016-10-31 08:19:40,090:DEBUG:letsencrypt.cli:Root logging level set at 30
2016-10-31 08:19:40,092:INFO:letsencrypt.cli:Saving debug log to /var/log/letsencrypt/letsencrypt.log
2016-10-31 08:19:40,092:DEBUG:letsencrypt.cli:letsencrypt version: 0.4.1
2016-10-31 08:19:40,092:DEBUG:letsencrypt.cli:Arguments: ['--webroot', '-w', '/path/to/www/foo', '-d', 'foo.com', '-d', 'www.foo.com', '-w', '/path/to/www/foobar', '-d', 'foobar.com', '-d', 'www.foobar.com']
2016-10-31 08:19:40,093:DEBUG:letsencrypt.cli:Discovered plugins: PluginsRegistry(PluginEntryPoint#webroot,PluginEntryPoint#null,PluginEntryPoint#manual,PluginEntryPoint#standalone)
2016-10-31 08:19:40,098:DEBUG:letsencrypt.cli:Requested authenticator webroot and installer None
2016-10-31 08:19:40,099:DEBUG:letsencrypt.plugins.webroot:Creating root challenges validation dir at /path/to/www/foo/.well-known/acme-challenge
2016-10-31 08:19:40,100:DEBUG:letsencrypt.plugins.webroot:Creating root challenges validation dir at /path/to/www/foo/.well-known/acme-challenge
2016-10-31 08:19:40,100:DEBUG:letsencrypt.plugins.webroot:Creating root challenges validation dir at /path/to/www/foobar/.well-known/acme-challenge
2016-10-31 08:19:40,100:DEBUG:letsencrypt.plugins.webroot:Creating root challenges validation dir at /path/to/www/foobar/.well-known/acme-challenge
2016-10-31 08:19:40,100:DEBUG:letsencrypt.display.ops:Single candidate plugin: * webroot
Description: Webroot Authenticator
Interfaces: IAuthenticator, IPlugin
Entry point: webroot = letsencrypt.plugins.webroot:Authenticator
Initialized: <letsencrypt.plugins.webroot.Authenticator object at 0x7ff6a5901fd0>
Prep: True
2016-10-31 08:19:40,101:DEBUG:letsencrypt.cli:Selected authenticator <letsencrypt.plugins.webroot.Authenticator object at 0x7ff6a5901fd0> and installer None
2016-10-31 08:19:51,133:DEBUG:root:Sending GET request to https://acme-v01.api.letsencrypt.org/directory. args: (), kwargs: {}
2016-10-31 08:19:51,138:INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
2016-10-31 08:19:51,227:DEBUG:requests.packages.urllib3.connectionpool:"GET /directory HTTP/1.1" 200 280
@                  

我没有发现记录的消息对解释如何解决问题非常有帮助.有没有人真正理解发生了什么 – 更重要的是,如何解决这个问题?

解决方法:

此响应[500]表示Let的加密服务器响应具有500内部服务器错误的API请求.这是由于Let’s Encrypt的后端出错.只需等待片刻并重播请求,最终它会成功.

您可以在http://letsencrypt.status.io/查看Let的加密服务状态.

标签:nginx,ssl-certificate,lets-encrypt,certbot
来源: https://codeday.me/bug/20190706/1393458.html