Date
1 - 3 of 3
sorl janusgraph indexing with http basic authentication
Real Life Adventure
Thanks Marc for the Quick Update.
|
|
hadoopmarc@...
Unfortunately, JanusGraph does not support basic authentication on its SOLR client yet, see https://github.com/JanusGraph/janusgraph/issues/1056
Before finding this JanusGraph issue, I came across the following piece of SOLR documentation which might be worth a try: https://solr.apache.org/guide/8_1/basic-authentication-plugin.html#global-jvm-basic-auth-credentials Finally, note that the discussion in the JanusGraph issue also includes a workaround forapplying ssl on the SOLR connection, which is a natural further step for protecting your SOLR data. Best wishes, Marc |
|
Hello Everyone,
iam trying to index dynamic graphs with solr index,but iam facing below error. gremlin> sg.V().has('state', textContains('runn'))
Error from server at http://*.*.*.*:***/solr: Expected mime type application/octet-stream but got text/html. <html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Error 401 require authentication</title>
</head>
<body><h2>HTTP ERROR 401 require authentication</h2>
<table>
<tr><th>URI:</th><td>/solr/state/select</td></tr>
<tr><th>STATUS:</th><td>401</td></tr>
<tr><th>MESSAGE:</th><td>require authentication</td></tr>
<tr><th>SERVLET:</th><td>default</td></tr>
</table>
</body>
</html>
#############################################mgmt.set('index.search.backend','solr')
mgmt.set('index.search.solr.mode','http')
mgmt.set('index.search.solr.http-urls','http://xxx:xx/solr')
mgmt.set('index.search.solr.username','***')
mgmt.set('index.search.solr.password','***')
i set above configuration with solr index. if any help.it would be appreciated. Thanks in advance, Real life Adventure. |
|