John
John
I have use this to input data into the ingest node via metricbeat and alike.... Configure SSL verification mode. If `none` is configured, all server hosts and certificates will be...
yes thanks, that worked.... But the cert was generated by elastic's tool, certgen... Make sure you created your ES cluster certs with SANs and CN, otherwise the default is without...
X509v3 Subject Alternative Name: Ive add all the IP addresses to this cert and DNS names too... I can not add a CN to the elastic transport SSL certs. Unable...
openssl s_client -showcerts -connect hostname:9200 Server certificate subject=CN = instance issuer=CN = Elastic Certificate Tool Autogenerated CA --- No client certificate CA names sent Peer signing digest: SHA256 Peer signature...
I'm getting the same problem when uploading a file above 1G. How to get around this? something in nodejs limit seems to be the problem indeed!
Edit node_modules/formidable/lib/incoming_form.js Add a zero to this: this.maxFileSize = opts.maxFileSize || 2000 * 1024 * 1024; This fixed the issue with 1G limit.
understood, but thanks for making this project so well.