Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ssl/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ssl 集成开源puppetserver一个puppetdb失败_Ssl_Encryption_Puppet - Fatal编程技术网

Ssl 集成开源puppetserver一个puppetdb失败

Ssl 集成开源puppetserver一个puppetdb失败,ssl,encryption,puppet,Ssl,Encryption,Puppet,我有开源的puppetserver和puppetdb版本6,我发现以下错误: Warning: Error 500 on SERVER: Server Error: Could not retrieve facts for puppet-open.home.com: Failed to find facts from PuppetDB at puppet-open:8140: Failed to execute '/pdb/query/v4/nodes/puppet-open.home.com/

我有开源的puppetserver和puppetdb版本6,我发现以下错误:

Warning: Error 500 on SERVER: Server Error: Could not retrieve facts for puppet-open.home.com: Failed to find facts from PuppetDB at puppet-open:8140: Failed to execute '/pdb/query/v4/nodes/puppet-open.home.com/facts' on at least 1 of the following 'server_urls': https://puppet-ope.home.com:8081
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Retrieving locales
Info: Loading facts
Error: Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Failed to execute '/pdb/cmd/v1?checksum=8c006b56f0b77a1e19e4f55b9f7c381ff2ec7879&version=5&certname=puppet-open.home.com&command=replace_facts&producer-timestamp=2020-09-19T19:56:54.158Z' on at least 1 of the following 'server_urls': https://puppet-open.home.com:8081
Warning: Not using cache on failed catalog
Error: Could not retrieve catalog; skipping run
我怀疑问题是由密码ans引起的,特别是密码误报是ECDHE-RSA-AES256-GCM-SHA384,请参阅PUPTDB的日志:

2020-09-19T15:06:07.905-05:00 INFO  [o.e.j.u.s.SslContextFactory] No Cipher matching 'ECDHE-RSA-AES256-GCM-SHA384' is supported


2020-09-19T15:06:07.910-05:00 WARN  [o.e.j.u.s.S.config] Weak cipher suite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA enabled for InternalSslContextFactory@4b103100[provider=null,keyStore=null,trustStore=null]
这项工作:
curl-X Gethttps://puppet-open.home.com:8081/pdb/query/v4/resources --tlsv1--cacert/etc/puppetlabs/puppet/ssl/certs/ca.pem--cert/etc/puppetlabs/puppet/puppet-open.home.com.pem--key/etc/puppetlabs/puppet/ssl/private_-keys/puppet-open.home.pem-H'内容类型:application/json'-d'{“查询”:[“=”,“certname”,“puppet open.home.com”]}--密码ECDHE-RSA-AES256-GCM-SHA384

我怎样才能解决这个问题,谢谢你的帮助

桑德罗