View Single Post
  #1  
Old 06-13-2019, 11:17 PM
Stubbay
Sarnak
 
Join Date: Sep 2012
Posts: 51
Post Problems setting up a LAN server

This is my first time trying to set up a server of any kind. I'm trying to do so over LAN so I can learn how to modify it, before I try to make it public (not that I expect much from doing so).

HTML Code:
Akka's Windows Server Launcher
Zones to launch: 30
Zone background starting enabled...
Loginserver set to run...
World: UP Zones: (8/30) UCS: DOWN Queryserv: DOWN Loginserver: UP P N
This is what I get when I run t_start_server_with_login_server.bat file.

It near instantly loads 30/30, but then, another CMD prompt briefly flashes on screen, and the server goes DOWN. It loads 30/30, again, and repeats the process.

I first followed this (https://github.com/EQEmu/Server/wiki/Windows-Server) .

When the above issue occurred, I assumed something was missing from my eqemu_config.jSON file, and looked to these pages (https://github.com/EQEmu/Server/wiki/eqemu_config ) & (https://github.com/Akkadius/EQEmuIns...mu_config.json ).

My current eqemu_config.json file reads:
HTML Code:
{
	"server": {
		"zones": {
			"defaultstatus": "0",
			"ports": {
				"low": "7000",
				"high": "7999"
			}
		},
		"qsdatabase": {
			"host": "localhost",
			"port": "3306",
			"username": "eq",
			"password": "eq",
			"db": "eq"
		},
		"chatserver": {
			"port": "7778",
			"host": ""
		},
		"mailserver": {
			"host": "",
			"port": "7778"
		},
		"webinterface": {
			"port": "9081"
		},
		"world": {
			"loginserver1": {
				"account": "",
				"password": "",
				"legacy": "0",
				"host": "login.eqemulator.net",
				"port": "5998"
			},
			"loginserver2": {
				"port": "5998",
				"account": "",
				"password": "",
				"host": "10.0.0.46" 
			},
			"tcp": {
				"ip": "127.0.0.1",
				"port": "9001"
			},
			"telnet": {
				"ip": "0.0.0.0",
				"port": "9000",
				"enabled": "true"
			},
			"key": "somelongrandomstring12345asdfffff",
			"http": {
				"port": "9080",
				"enabled": "true",
				"mimefile": "mime.types"
			},
			"shortname": "Yargh",
			"longname": "Yarghen Test"
		},
		"database": {
			"db": "eq",
			"host": "localhost",
			"port": "3306",
			"username": "eq",
			"password": "eq"
		}
	}
}

I have also run the t_server_crash_report.pl and it reports no crashes.

I had a few weird issues trying to install MySQL (which I read in another forum post, I needed), but since this is all new to me, I'm at a loss, and have been looking for solutions for hours.
Reply With Quote