Skip to content

Commit 97d755c

Browse files
committed
Switching solr to port 8983.
1 parent ebb3b83 commit 97d755c

File tree

9 files changed

+10
-9
lines changed

9 files changed

+10
-9
lines changed

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>gov.nasa.jpl.edrn.labcas</groupId>
1313
<artifactId>labcas-backend</artifactId>
14-
<version>0.2</version>
14+
<version>0.3</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

common/src/main/java/gov/nasa/jpl/edrn/labcas/utils/SolrUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public class SolrUtils {
4141
private final static Logger LOG = Logger.getLogger(SolrUtils.class.getName());
4242

4343
// default value for SOLR URL
44-
private static String SOLR_URL = "http://localhost:8080/solr/oodt-fm";
44+
private static String SOLR_URL = "http://localhost:8983/solr/oodt-fm";
45+
//private static String SOLR_URL = "http://localhost:8080/solr/oodt-fm";
4546

4647
// IMPORTANT: must re-use the same SolrServer instance across all requests to prevent memory leaks
4748
// see https://issues.apache.org/jira/browse/SOLR-861

examples/labcas-solrpy-example-client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def printResult(result):
1515

1616
if __name__ == '__main__':
1717

18-
solr_url = "http://localhost:8080/solr"
18+
solr_url = "http://localhost:8983/solr/oodt-fm"
1919
solr_server = solr.SolrConnection(solr_url)
2020

2121
# query for all datasets with this name, all versions

examples/labcas-upload-update-query-example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
verbose = False
2121
workflowManagerServerProxy = xmlrpclib.ServerProxy('http://localhost:9001/', verbose=verbose)
2222
fileManaferServerProxy = xmlrpclib.ServerProxy('http://localhost:9000/', verbose=verbose)
23-
solrServerProxy = solr.SolrConnection("http://localhost:8080/solr")
23+
solrServerProxy = solr.SolrConnection("http://localhost:8983/solr/oodt-fm")
2424

2525

2626
def uploadDataset(dataset):

oodt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>gov.nasa.jpl.edrn.labcas</groupId>
1515
<artifactId>labcas-backend</artifactId>
16-
<version>0.2</version>
16+
<version>0.3</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

oodt/src/main/resources/filemgr.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ org.apache.oodt.cas.filemgr.catalog.lucene.writeLockTimeout.seconds=60
6969
org.apache.oodt.cas.filemgr.catalog.lucene.mergeFactor=20
7070

7171
# solr catalog configuration
72-
org.apache.oodt.cas.filemgr.catalog.solr.url=http://localhost:8983/solr
72+
org.apache.oodt.cas.filemgr.catalog.solr.url=http://localhost:8983/solr/oodt-fm
7373
#org.apache.oodt.cas.filemgr.catalog.solr.url=http://localhost:8080/solr
7474
org.apache.oodt.cas.filemgr.catalog.solr.productSerializer=org.apache.oodt.cas.filemgr.catalog.solr.DefaultProductSerializer
7575
org.apache.oodt.cas.filemgr.catalog.solr.productIdGenerator=org.apache.oodt.cas.filemgr.catalog.solr.UUIDProductIdGenerator

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<groupId>gov.nasa.jpl.edrn.labcas</groupId>
1212
<artifactId>labcas-backend</artifactId>
1313
<name>LabCAS backend</name>
14-
<version>0.2</version>
14+
<version>0.3</version>
1515
<packaging>pom</packaging>
1616

1717
<licenses>

solr/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>gov.nasa.jpl.edrn.labcas</groupId>
1313
<artifactId>labcas-backend</artifactId>
14-
<version>0.2</version>
14+
<version>0.3</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

tomcat/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>gov.nasa.jpl.edrn.labcas</groupId>
1616
<artifactId>labcas-backend</artifactId>
17-
<version>0.2</version>
17+
<version>0.3</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020

0 commit comments

Comments
 (0)