2016-10-31 64 views
4

我正在爲兩個站點創建自己的SSL證書,使用certbot and letencryptClientError:(<Response [500]>,DeserializationError('以下字段是required:detail'))

我正在運行nginx的版本:Ubuntu的LTS 16.0.4 nginx的/ 1.10.0

我運行下面的命令:

[email protected]:~$ 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 
@     

我找不到記錄的消息在解釋如何解決問題時非常有幫助。有人真的明白髮生了什麼 - 更重要的是,如何解決這個問題?

+0

他們已經知道這個=> http://letsencrypt.status.io/ – grodzik

回答

1

響應[500]意味着,咱們加密服務器響應API請求與500內部服務器錯誤。這是由於Let's Encrypt的後端方面出現錯誤。只需等待一會兒並重播請求,最終它會成功。

您可以在http://letsencrypt.status.io/上查看Let's Encrypt服務狀態。

相關問題