View Single Post
  #1  
Old 05-29-2020, 07:13 PM
Stim0x
Fire Beetle
 
Join Date: Jul 2009
Location: s
Posts: 5
Default Unable to see server in list for private login

Hi folks,

Sorry I know this one has been beaten to death. I've read multiple threads here and other sources that have varying formats for eqemu_config.json and none have worked so far.

I'm able to connect to the local login server I'm hosting on the same virtual machine as the world server. I'm not able to see the world server in the list.

My current configs are as follows - local LAN IP is listed as x.x.x.x

I will want others to connect to this in the future, so it would be useful to know where I need to list the public IP address of the server where necessary.

Any help appreciated. Thanks.

eqemu_config.json

Code:
{
        "server": {
                "zones": {
                        "defaultstatus": "0",
                        "ports": {
                                "low": "7000",
                                "high": "7400"
                        }
                },
                "qsdatabase": {
                        "host": "localhost",
                        "port": "3306",
                        "username": "username",
                        "password": "password",
                        "db": "eqemu"
                },
                "chatserver": {
                        "port": "7778",
                        "host": ""
                },
               "mailserver": {
                        "host": "",
                        "port": "7778"
                },
                "webinterface": {
                        "port": "9081"
                },
                "world": {
                        "loginserver1": {
                                "account": "username",
                                "password": "password",
                                "legacy": "0",
                                "host": "x.x.x.x",
                                "port": "5998"
                        },
                        "localaddress" : "x.x.x.x",
                        "tcp": {
                                "ip": "x.x.x.x",
                                "port": "9001"
                        },
                        "telnet": {
                                "ip": "0.0.0.0",
                                "port": "9000",
                                "enabled": "true"
                        },
                        "key": "averylongkeyxxxxxxxxxxx",
                        "http": {
                                "port": "9080",
                                "enabled": "true",
                                "mimefile": "mime.types"
                        },
                        "shortname": "Stim",
                        "longname": "Stim"
                },
                "database": {
                        "db": "eqemu",
                        "host": "localhost",
                        "port": "3306",
                        "username": "username",
                        "password": "password"
               }
        }
}
login.json

Code:
{
   "account" : {
      "auto_create_accounts" : true
   },
   "client_configuration" : {
      "sod_opcodes" : "assets/opcodes/login_opcodes_sod.conf",
      "sod_port" : 5999,
      "titanium_opcodes" : "assets/opcodes/login_opcodes.conf",
      "titanium_port" : 5998
   },
   "database" : {
      "db" : "eqemu",
      "host" : "127.0.0.1",
      "password" : "password",
      "port" : "3306",
      "user" : "username"
   },
   "logging" : {
      "dump_packets_in" : false,
      "dump_packets_out" : false,
     "trace" : false,
      "world_trace" : false
   },
   "security" : {
      "allow_password_login" : true,
      "allow_token_login" : true,
      "mode" : 14
   },
   "web_api" : {
      "enabled" : true,
      "port" : 6000
   },
   "worldservers" : {
      "reject_duplicate_servers" : false,
      "unregistered_allowed" : true
   }
Reply With Quote