View Single Post
  #1  
Old 08-10-2023, 01:52 AM
Squirrelsatplay
Fire Beetle
 
Join Date: Apr 2022
Posts: 2
Default Private LAN Server set up fails...

I am trying to set up a windows version of the eqemu server here in my local LAN network for private use.

I have tried following a couple guides on setting it all up. I have got nearly all the way but I am hitting a few road blocks and can't get my server to show up on my server selection window.

If someone could take a look at this code and let me know what they think. I got the least amount of warning messages when I started the server with this code but idk ... Most of the information I have been able to gather is outdated 3-6 years and many of the old docs on the docs.eqemu.io set up guide are no longer available. So troubleshooting is not easy.

Code:
{
   "server" : {
      "chatserver" : {
         "host" : "192.168.0.10",
         "port" : "7778"
      },
      "database" : {
         "db" : "peq",
         "host" : "192.168.0.10",
         "password" : "eqemu",
         "port" : "3306",
         "username" : "root"
      },
      "directories" : {
         "opcodes" : "assets/opcodes/",
         "patches" : "assets/patches/"
      },
      "files" : {
         "mail_opcodes" : "assets/opcodes/mail_opcodes.conf",
         "opcodes" : "assets/opcodes/opcodes.conf"
      },
      "mailserver" : {
         "host" : "192.168.0.10",
         "port" : "7778"
      },
      "qsdatabase" : {
         "db" : "peq",
         "host" : "192.168.0.10",
         "password" : "eqemu",
         "port" : "3306",
         "username" : "root"
      },
      "world" : {
         "localaddress" : "192.168.0.10",
         "address" : "192.168.0.10",
         "key" : "hidden for this post",
         "loginserver1" : {
            "account" : "",
            "host" : "192.168.0.10",
            "legacy" : "0",
            "password" : "",
            "port" : "5999"
         },
         "longname" : "Squirrels at Play by Abit Squirrelly",
         "shortname" : "Squirrels at Play",
         "tcp" : {
            "ip" : "192.168.0.10",
            "port" : "9001"
         },
         "telnet" : {
            "enabled" : "true",
            "ip" : "0.0.0.0",
            "port" : "9000"
         }
      },
      "zones" : {
         "defaultstatus" : "0",
         "ports" : {
            "high" : "7400",
            "low" : "7000"
         }
      }
   }
}
Reply With Quote