Browse Source

FIX the wrong port number

pkubase
knightmarehs 6 years ago
parent
commit
4a4c312844
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/jgsc/GstoreConnector.java
  2. +2
    -2
      src/qa/Globals.java

+ 1
- 1
src/jgsc/GstoreConnector.java View File

@@ -430,7 +430,7 @@ public class GstoreConnector {

public static void main(String[] args) {
// initialize the GStore server's IP address and port.
GstoreConnector gc = new GstoreConnector("172.31.222.90", 9001);
GstoreConnector gc = new GstoreConnector("dbpedia16.gstore-pku.com", 80);

// build a new database by a RDF file.
// note that the relative path is related to gserver.


+ 2
- 2
src/qa/Globals.java View File

@@ -39,8 +39,8 @@ public class Globals {
public static int evaluationMethod = 2;
public static String localPath = "./././";
public static String QueryEngineIP = "172.31.222.90"; // Notice, PORT number is in the evaluation function.
public static int QueryEnginePort = 9001;
public static String QueryEngineIP = "dbpedia16.gstore-pku.com"; // Notice, PORT number is in the evaluation function.
public static int QueryEnginePort = 80;
public static void init ()
{


Loading…
Cancel
Save