View Single Post
  #3  
Old 07-09-2020, 12:38 AM
RedVapor
Fire Beetle
 
Join Date: Dec 2018
Posts: 7
Default

Had some good convo on the Discord server... I actually got it working using this for a second. After I rebooted the server it stopped...

Code:
{
   "server" : {
      "chatserver" : {
         "host" : "",
         "port" : "7778"
      },
      "database" : {
         "db" : "eq",
         "host" : "localhost",
         "password" : "REDACT",
         "port" : "3306",
         "username" : "REDACT"
      },
      "mailserver" : {
         "host" : "",
         "port" : "7778"
      },
      "qsdatabase" : {
         "db" : "eq",
         "host" : "localhost",
         "password" : "REDACT",
         "port" : "3306",
         "username" : "REDACT"
      },
      "webinterface" : {
         "port" : "9081"
      },
      "world" : {
         "address" : "10.2.2.8",
         "localaddress" : "10.2.2.8",
         "http" : {
            "enabled" : "false",
            "mimefile" : "mime.types",
            "port" : "9080"
         },
         "key" : "REDACT",
         "loginserver" : {
            "account" : "",
            "host" : "10.2.2.8",
            "legacy" : "0",
            "password" : "",
            "port" : "5998"
         },
         "longname" : "Test",
         "shortname" : "test",
         "tcp" : {
            "ip" : "10.2.2.8",
            "port" : "9001"
         },
         "telnet" : {
            "enabled" : "true",
            "ip" : "0.0.0.0",
            "port" : "9000"
         }
      },
      "zones" : {
         "defaultstatus" : "0",
         "ports" : {
            "high" : "7400",
            "low" : "7000"
         }
      }
   }
}
I notice the world and login servers have two different processes logging out to two separate log files. The login log file does the same. In all instance at least one set of the two shows the server connection. I assume the different processes are the server > world connection the client > world.
Reply With Quote