{ library: 'SSL routines', function: 'ssl3_get_record', reason: 'wrong version number', code: 'ERR_SSL_WRONG_VERSION_NUMBER' } Error · Issue #362 · lbdremy/solr-node-client · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using solr 8.11. behingd a nginx server at digitalocean on ubuntu 20.00.
trying to run the code:
// Use
var solr = require('solr-client')
in your codevar solr = require('solr-client');
var client = solr.createClient({
host : 'XXXX',
path:"/solr",
protocol: 'https',
core : 'XXXXXX',
secure: true
});
// Use
client.unauth
if you want to remove credentials previously set.//client.unauth();
const query2 = client.query().q({ description: 'rice' }).start(0).rows(10);
const obj2 = client.search(query2, ()=> {
console.log(obj2);
});
and i getting the error:
{
library: 'SSL routines',
function: 'ssl3_get_record',
reason: 'wrong version number',
code: 'ERR_SSL_WRONG_VERSION_NUMBER'
}
I dont know whether the error is on the solr-client, on my code or on nginx ..
Please advice me,
Regards
Julio
The text was updated successfully, but these errors were encountered: