Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 06-27-2019, 07:17 PM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default FYI Script Glitch

I'm running eqemu in linux with a login server and everything works.. I'm making some pretty awesome changes to the code, that I want to have on my server. I'm rebooting eqemu often as I make these changes. Now here the glitch.. server_launcher.pl launches things sometimes. It comes up flawlessly sometimes... Other times it doesn't load world or the zones. What? Weird.. So I looked in to it. Turns out there's a bug in the server_launcher.

Code:
foreach my $val (@processes){
        if($val=~/ucs/i){
            $ucs_process_count++;
        }
        if($val=~/world/i){
            print "VALUE=->$val<-\n";
            $world_process_count++;
        }
        if($val=~/zone/i){
            $zone_process_count++;
        }
        if($val=~/queryserv/i){
            $queryserv_process_count++;
        }
        if($val=~/loginserver/i){
            $loginserver_process_count++;
        }
    }
Should be changed to ...

Code:
foreach my $val (@processes){
        if($val=~/ucs$/i){
            $ucs_process_count++;
        }
        if($val=~/world$/i){
            print "VALUE=->$val<-\n";
            $world_process_count++;
        }
        if($val=~/zone$/i){
            $zone_process_count++;
        }
        if($val=~/queryserv$/i){
            $queryserv_process_count++;
        }
        if($val=~/loginserver$/i){
            $loginserver_process_count++;
        }
    }
What was happening .. Was that I occasionally nanoed worldserver.cpp. The server launcher would see that in the ps aux, and think that it was a running copy of world. So it would skip loading it. I think that if the world is not loaded, the zones eventually timeout... or something. So that's the glitch. It had me scratching my head for a couple minutes.

Oh, and thanks for putting together the awesome eqemu server, and letting us play around with all your hard work!!
Reply With Quote
  #2  
Old 06-28-2019, 07:29 PM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default Ack.

While I was trying to find the glitch stated above, I was modifying my configs.. So I broke something. I figure it's probably in the config somewhere.. I can log in though the local login server, but I've got no servers listed after logging in. Anyone see anything wrong with this setup?

eqemu_config.json
Code:
{
   "server" : {
      "chatserver" : {
         "host" : "",
         "port" : "7778"
      },
      "database" : {
         "db" : "eqemudatabase",
         "host" : "localhost",
         "password" : "dbpassword",
         "port" : "3306",
         "username" : "dbusername"
      },
      "mailserver" : {
         "host" : "",
         "port" : "7778"
      },
      "qsdatabase" : {
         "db" : "eqemu",
         "host" : "localhost",
         "password" : "marcali37",
         "port" : "3306",
         "username" : "eqemu"
      },
      "webinterface" : {
         "port" : "9081"
      },
      "world" : {
         "address":"192.168.0.21",
         "localaddress":"192.168.0.21",
         "http" : {
            "enabled" : "true",
            "mimefile" : "mime.types",
            "port" : "9080"
         },
         "key" : "mykey",
         "loginserver1" : {
            "account" : "myaccount",
            "host" : "192.168.0.21",
            "legacy" : "1",
            "password" : "mypassword",
            "port" : "5998"
         },
         "loginserver2" : {
            "account" : "myaccount",
            "host" : "192.168.0.21",
            "legacy" : "0",
            "password" : "mypassword",
            "port" : "5999"
         },
         "longname" : "daves eqemu",
         "shortname" : "deqemu",
         "tcp" : {
            "ip" : "192.168.0.21",
            "port" : "9001"
         },
         "telnet" : {
            "enabled" : "true",
            "ip" : "0.0.0.0",
            "port" : "9000"
         }
      },
      "zones" : {
         "defaultstatus" : "0",
         "ports" : {
            "high" : "7400",
            "low" : "7000"
         }
      }
   }
}
login.ini
Code:
[database]
host = localhost
port = 3306
db = dbaccount
user = dbuser
password = dbpassword
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 192.168.0.
auto_create_accounts = TRUE

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = loginserver_server_accounts
world_registration_table = loginserver_world_server_registration
world_admin_registration_table = loginserver_server_admin_registration
world_server_type_table = loginserver_server_list_type
Thanks for the help!
Reply With Quote
  #3  
Old 06-28-2019, 07:37 PM
Uleat's Avatar
Uleat
Developer
 
Join Date: Apr 2012
Location: North Carolina
Posts: 2,815
Default

Did the ip of your computer change when you restarted it?
__________________
Uleat of Bertoxxulous

Compilin' Dirty
Reply With Quote
  #4  
Old 06-28-2019, 09:19 PM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default

The ip of the computer running the client may have. It is setup as DHCP. The server didn't though, it's hard coded.

The server is running on centos 7.6.1810. I'm absolutely sure there's nothing on the server that's blocking traffic. I thought perhaps there was something in windows 10 blocking, but that wasn't it. So I'm left with some kind of configuration issue. I nuked and paved with a new copy of eqemu.. Still nothing after resetting the config like I've displayed above. I figured perhaps it was win 10.. So... I nuked my win 10 installation, and went back to win 7 just to make sure that it wasn't windows defender blocking.. Even though I had shut it off. Still nothing.
Reply With Quote
  #5  
Old 06-28-2019, 09:28 PM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default

Here's a copy of stuff starting up.......

Code:
[root@dclark server]# ./start.sh 
[Status] Loading items...
[Status] Loading factions...
[Status] Loading loot...
[Status] Loading skill caps...
[Status] Loading spells...
[Status] Loading base data...
Server started - use server_status.sh to check server status
[root@dclark server]# 
Akka's Linux Server Launcher
Loginserver set to run...
Zones to launch: 30
[Login Server] Logging System Init. Queryserv: DOWN Loginserver:  P N 	
[Login Server] Config System Init.
[Login Server] MySQL Database Init.
[Login Server] Logging System Init.
[Login Server] Config System Init.
[Login Server] MySQL Database Init.
[Login Server] Server Manager Initialize.
[Login Server] Client Manager Initialize.
[Login Server] Server Started.
[Login Server] Server Manager Initialize.
[Login Server] Client Manager Initialize.
[Login Server] Server Started.
[World Server] Loading server configuration..
[World Server] CURRENT_VERSION: 1.1.3
[World Server] Added loginserver 192.168.0.21:5999
[World Server] Added loginserver 192.168.0.21:5998
[World Server] Connecting to MySQL eqemu@localhost:3306...
[Status] Starting File Log 'logs/world_18567.log'
[World Server] Checking Database Conversions..
[Zone Server] Loading server configuration.. DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Loading server configuration.. DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18579.log'
[Zone Server] Loading server configuration.. DOWN Loginserver:  	
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Status] Starting File Log 'logs/zone_18581.log'
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables Queryserv: DOWN Loginserver:  	
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Loading factions
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading server configuration..
[Status] Starting File Log 'logs/zone_18583.log'
[Zone Server] Loading Variables
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading server configuration..
[Zone Server] Loading skill capsN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading spells
[Status] Starting File Log 'logs/zone_18586.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Loading base data
[Zone Server] Connecting to MySQL...
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading guilds
[Zone Server] Loading zone names
[Zone Server] Loading factions
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Status] Starting File Log 'logs/zone_18589.log'
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] CURRENT_VERSION: 1.1.3eryserv: DOWN Loginserver:  	
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading factions
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Loading loot tables
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading zone names
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factionsOWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading items
[Status] Starting File Log 'logs/zone_18592.log'
[Zone Server] Loading npc faction lists
[Zone Server] Loading server configuration..
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Connecting to MySQL...
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading server configuration..: DOWN Loginserver:  	
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone names
[Status] Starting File Log 'logs/zone_18595.log'
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18598.log'
[Zone Server] Loading server configuration..: DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading skill caps
[Zone Server] Loading Variables
[Zone Server] Loading spells
[Status] Starting File Log 'logs/zone_18601.log'
[Zone Server] Loading zone names
[Zone Server] Loading base data
[Zone Server] Loading server configuration..
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Connecting to MySQL...
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] CURRENT_VERSION: 1.1.3ueryserv: DOWN Loginserver:  	
[Zone Server] Loading guilds
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading factions
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18604.log'WN Loginserver:  	
[Zone Server] Loading server configuration..
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Loading server configuration..
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone namesWN Queryserv: DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18607.log'
[Status] Starting File Log 'logs/zone_18610.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading zone namesWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading items
[Zone Server] Loading spells
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading base data
[Zone Server] Loading skill caps
[Zone Server] Loading guilds
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading factions
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18613.log'
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...ueryserv: DOWN Loginserver:  	
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading server configuration..
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18615.log'
[Zone Server] Connecting to MySQL...ueryserv: DOWN Loginserver:  	
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading server configuration..
[Zone Server] Loading items
[Status] Starting File Log 'logs/zone_18620.log'WN Loginserver:  	
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Connecting to MySQL...
[Zone Server] Loading skill caps
[Zone Server] Loading server configuration..
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Connecting to MySQL...
[Zone Server] Loading factions
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factionsDOWN Queryserv: DOWN Loginserver:  	
[Status] Starting File Log 'logs/zone_18622.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Status] Starting File Log 'logs/zone_18625.log'
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading guilds
[Zone Server] Loading Variables
[Zone Server] Loading factionsDOWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading server configuration..
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading server configuration..: DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18628.log'WN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factionsDOWN Queryserv: DOWN Loginserver:  	
[Status] Starting File Log 'logs/zone_18632.log'
[Zone Server] Loading server configuration..
[Zone Server] Loading server configuration..
[Status] Starting File Log 'logs/zone_18634.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Connecting to MySQL...
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading base data
[Zone Server] Loading Variables
[Zone Server] Loading guilds
[Zone Server] Loading zone names
[Zone Server] Loading factions
[Zone Server] Loading itemsS: DOWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading server configuration..
[Status] Starting File Log 'logs/zone_18636.log'
[Status] Starting File Log 'logs/zone_18639.log'WN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Loading server configuration..
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading factions
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18643.log'
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18649.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill capsWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading factions
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18647.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone namesWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18654.log'WN Loginserver:  	
[Zone Server] Loading server configuration..
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading server configuration..: DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Connecting to MySQL...
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/zone_18656.log'WN Loginserver:  	
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Status] Starting File Log 'logs/zone_18658.log'
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading server configuration..
[Zone Server] Loading zone namesWN Queryserv: DOWN Loginserver:  	
[Zone Server] Connecting to MySQL...
[Zone Server] Loading server configuration..
[Status] Starting File Log 'logs/zone_18661.log'
[Zone Server] Connecting to MySQL...
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[QS Server] Starting EQEmu QueryServ.
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[QS Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_18665.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Status] Starting File Log 'logs/query_server_18667.log'
[UCS Server] Starting EQEmu Universal Chat Server.
[UCS Server] Connecting to MySQL...
[Status] Starting File Log 'logs/ucs_18671.log'
[UCS Server] Loaded default rule set 'default'
[UCS Server] Initialized dynamic dictionary entries
[UCS Server] Loading 'mail_opcodes.conf'
[Zone Server] Loading titles: DOWN Queryserv: DOWN Loginserver:  	
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading commands
[Zone Server] Loading quests
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loading profanity list
[Zone Server] 272 commands loaded
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] 272 commands loaded
[Zone Server] Loading titles
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loading titles
[Zone Server] 272 commands loaded
[Zone Server] Loading tributes
[Zone Server] Loading titles
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading tributes
[Zone Server] 272 commands loaded
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading tributes
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading titles
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading tributes
[Zone Server] Loading commands
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] 272 commands loaded
[Zone Server] Loading titles
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] 272 commands loaded
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading tributes
[Zone Server] Loading quests
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Loading Perl Event Export Settings...erver:  		
[Zone Server] Loading quests
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading profanity list
[Zone Server] Loading commands
[Zone Server] 272 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Initialized dynamic dictionary entries
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Zone Server] Entering sleep mode
[Update] No script update necessary...rv: UP Loginserver:  		
[Info] For EQEmu Server management utilities - run eqemu_server.pl
[Update] Database up to date...
[World Server] Loading variables..
[World Server] Purging expired data buckets...
[World Server] Loading zones..
[World Server] Clearing groups..
[World Server] Clearing raids..
[World Server] Clearing inventory snapshots..
[World Server] Loading items..
[World Server] Loading skill caps..
[World Server] Loading guilds..
[World Server] Loaded default rule set 'default'
[World Server] Initialized dynamic dictionary entries
[World Server] Loading EQ time of day..
[World Server] Loading launcher list..
[World Server] Reboot zone modes OFF
[World Server] Deleted 0 stale player corpses from database
[World Server] Loading adventures...
[World Server] Purging expired instances
[World Server] Loading char create info...
[World Server] Console (TCP) listener started.
[World Server] Server (TCP) listener started.
[World Server] New Zone Server connection from 7a9bdeee-f146-4d84-bb2a-563a68f0f9c2 at 127.0.0.1:44462
[World Server] New Zone Server connection from a464e0b1-722c-48c4-b1dd-ee1513df32ce at 127.0.0.1:44464
[World Server] New Zone Server connection from 6bfb832a-9ddc-412a-98c0-39ea20ca9f5e at 127.0.0.1:44458
[World Server] New Zone Server connection from f6006078-f379-42ec-bee9-8e69ddb6ec4d at 127.0.0.1:44460
[World Server] New Zone Server connection from 9ddd44f6-6baa-46fc-aed2-cebc792d1d4d at 127.0.0.1:44466
[World Server] New Zone Server connection from 744b36ea-a122-42de-8992-e690fcd77cf0 at 127.0.0.1:44468
[World Server] New Zone Server connection from 2076477b-2d91-46f4-9aaf-d3927ca3d061 at 127.0.0.1:44470
[World Server] New Zone Server connection from 647212f8-a4e8-487b-a93b-37fe10757afe at 127.0.0.1:44472
[World Server] New Query Server connection from dd70322b-b185-4244-a0ac-259db2a3e9f5 at 127.0.0.1:44474
[World Server] New Zone Server connection from 7f992f31-a462-4f58-bbf8-de649b2c1b2d at 127.0.0.1:44478
[World Server] New Zone Server connection from c69f5415-4d86-432d-9982-00532973a3d8 at 127.0.0.1:44480
[World Server] New Zone Server connection from 37a5d519-f370-4615-b282-44864f405deb at 127.0.0.1:44482
[World Server] New Zone Server connection from e941605b-9c31-4130-9b15-1673c6903f8c at 127.0.0.1:44476
[World Server] New Zone Server connection from 92a5eee4-4917-463d-a3c0-8bb565e5e14e at 127.0.0.1:44492
[World Server] New Zone Server connection from ad42d1e6-5459-4cf8-a77a-d816ab372b9a at 127.0.0.1:44486
[World Server] New Zone Server connection from c0faa1d3-e13e-41d3-8b6d-7bc4a7e058cd at 127.0.0.1:44484
[World Server] New Zone Server connection from 73a0c579-bbda-4072-9fd8-5675bc52a5c0 at 127.0.0.1:44488
[World Server] New Zone Server connection from c03ea71c-98e1-4232-95e1-98641055d71a at 127.0.0.1:44490
[World Server] New Zone Server connection from 7b342f1f-38dd-4b28-a7ee-d362749b9c50 at 127.0.0.1:44494
[World Server] New Zone Server connection from 15bbd15d-29be-4750-a6b5-fd40e680e26f at 127.0.0.1:44496
[World Server] New Zone Server connection from 307bf046-84f3-4b70-bfd9-5262cfd92036 at 127.0.0.1:44498
[World Server] New Zone Server connection from 8e6b60fc-7050-4758-947f-f0e370558771 at 127.0.0.1:44500
[World Server] New Zone Server connection from f0299ef7-d976-4498-b2c2-1150497b9f9c at 127.0.0.1:44502
[World Server] New Zone Server connection from ec7077c4-36fd-46b0-b631-b4bb1a70d070 at 127.0.0.1:44504
[World Server] New Zone Server connection from 38cc92b3-3d3f-4f20-a6db-609cea45ced6 at 127.0.0.1:44506
[World Server] New Zone Server connection from 61b9ee7f-6b72-4cbd-b49a-8664807d30cd at 127.0.0.1:44512
[World Server] New Zone Server connection from 3c5d6872-8f3e-4f89-a373-1f11e34d6aa9 at 127.0.0.1:44514
[World Server] New Zone Server connection from 865afe56-ab39-439d-89f2-6588aba677b9 at 127.0.0.1:44508
[World Server] New UCS Server connection from f84cf58a-9811-4c25-90a9-8a5ffddb9172 at 127.0.0.1:44516
[World Server] New Zone Server connection from c0a8f45f-4028-4efb-b09e-364782866ffe at 127.0.0.1:44510
[World Server] New Zone Server connection from 94f8d45c-3fbe-4cd3-971e-90ca42ffb91b at 127.0.0.1:44518
[World Server] New Zone Server connection from 902f7fd9-ff3d-4e94-8f1e-6d806ef7f057 at 127.0.0.1:44520
[Zone Server] Starting EQ Network server on port 7028
[Zone Server] Starting EQ Network server on port 7026
[Zone Server] Starting EQ Network server on port 7008ver:  		
[Zone Server] Starting EQ Network server on port 7012
[Zone Server] Starting EQ Network server on port 7022
[Zone Server] Starting EQ Network server on port 7003
[Zone Server] Starting EQ Network server on port 7000
[Zone Server] Starting EQ Network server on port 7005
[Zone Server] Starting EQ Network server on port 7014
[Zone Server] Starting EQ Network server on port 7010
[Zone Server] Starting EQ Network server on port 7015
[Zone Server] Starting EQ Network server on port 7001
[Zone Server] Starting EQ Network server on port 7011
[Zone Server] Starting EQ Network server on port 7009
[Zone Server] Starting EQ Network server on port 7013
[Zone Server] Starting EQ Network server on port 7016
[Zone Server] Starting EQ Network server on port 7017
[Zone Server] Starting EQ Network server on port 7019
[Zone Server] Starting EQ Network server on port 7024
[Zone Server] Starting EQ Network server on port 7021
[Zone Server] Starting EQ Network server on port 7027
[Zone Server] Starting EQ Network server on port 7002
[Zone Server] Starting EQ Network server on port 7025
[Zone Server] Starting EQ Network server on port 7029
[Zone Server] Starting EQ Network server on port 7006
[Zone Server] Starting EQ Network server on port 7007
[Zone Server] Starting EQ Network server on port 7004
[Zone Server] Starting EQ Network server on port 7020
[Zone Server] Starting EQ Network server on port 7018
[Zone Server] Starting EQ Network server on port 7023
World: UP Zones: (30/30) UCS: UP Queryserv: UP Loginserver:
Here's some lsof data.

Code:
COMMAND     PID   USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
mysqld     5476  mysql   19u  IPv6  36094      0t0  TCP *:3306 (LISTEN)
loginserv 18563   root   11u  IPv4 608307      0t0  TCP *:5998 (LISTEN)
loginserv 18563   root   12u  IPv4 608308      0t0  UDP *:5998 
loginserv 18563   root   13u  IPv4 608309      0t0  UDP *:5999 
loginserv 18563   root   14u  IPv4 626499      0t0  TCP 192.168.0.21:5998->192.168.0.21:37114 (ESTABLISHED)
loginserv 18565   root   12u  IPv4 539388      0t0  UDP *:5998 
loginserv 18565   root   13u  IPv4 539389      0t0  UDP *:5999 
world     18567   root   14u  IPv4 625655      0t0  TCP *:9000 (LISTEN)
world     18567   root   15u  IPv4 625656      0t0  TCP *:9001 (LISTEN)
world     18567   root   16u  IPv4 625657      0t0  UDP *:9000 
world     18567   root   17u  IPv4 625658      0t0  TCP 127.0.0.1:9001->127.0.0.1:44458 (ESTABLISHED)
world     18567   root   18u  IPv4 625659      0t0  TCP 127.0.0.1:9001->127.0.0.1:44460 (ESTABLISHED)
world     18567   root   19u  IPv4 625660      0t0  TCP 127.0.0.1:9001->127.0.0.1:44462 (ESTABLISHED)
world     18567   root   20u  IPv4 625661      0t0  TCP 127.0.0.1:9001->127.0.0.1:44464 (ESTABLISHED)
world     18567   root   21u  IPv4 625663      0t0  TCP 127.0.0.1:9001->127.0.0.1:44466 (ESTABLISHED)
world     18567   root   22u  IPv4 632833      0t0  TCP 127.0.0.1:9001->127.0.0.1:44468 (ESTABLISHED)
world     18567   root   23u  IPv4 632834      0t0  TCP 127.0.0.1:9001->127.0.0.1:44470 (ESTABLISHED)
world     18567   root   24u  IPv4 632835      0t0  TCP 127.0.0.1:9001->127.0.0.1:44472 (ESTABLISHED)
world     18567   root   25u  IPv4 632837      0t0  TCP 127.0.0.1:9001->127.0.0.1:44474 (ESTABLISHED)
world     18567   root   26u  IPv4 632838      0t0  TCP 127.0.0.1:9001->127.0.0.1:44476 (ESTABLISHED)
world     18567   root   27u  IPv4 632839      0t0  TCP 127.0.0.1:9001->127.0.0.1:44478 (ESTABLISHED)
world     18567   root   28u  IPv4 632840      0t0  TCP 127.0.0.1:9001->127.0.0.1:44480 (ESTABLISHED)
world     18567   root   29u  IPv4 632843      0t0  TCP 127.0.0.1:9001->127.0.0.1:44482 (ESTABLISHED)
world     18567   root   30u  IPv4 632845      0t0  TCP 127.0.0.1:9001->127.0.0.1:44484 (ESTABLISHED)
world     18567   root   31u  IPv4 632846      0t0  TCP 127.0.0.1:9001->127.0.0.1:44486 (ESTABLISHED)
world     18567   root   32u  IPv4 632847      0t0  TCP 127.0.0.1:9001->127.0.0.1:44488 (ESTABLISHED)
world     18567   root   33u  IPv4 632848      0t0  TCP 127.0.0.1:9001->127.0.0.1:44490 (ESTABLISHED)
world     18567   root   34u  IPv4 632850      0t0  TCP 127.0.0.1:9001->127.0.0.1:44492 (ESTABLISHED)
world     18567   root   35u  IPv4 632852      0t0  TCP 127.0.0.1:9001->127.0.0.1:44494 (ESTABLISHED)
world     18567   root   36u  IPv4 632853      0t0  TCP 127.0.0.1:9001->127.0.0.1:44496 (ESTABLISHED)
world     18567   root   37u  IPv4 632854      0t0  TCP 127.0.0.1:9001->127.0.0.1:44498 (ESTABLISHED)
world     18567   root   38u  IPv4 632856      0t0  TCP 127.0.0.1:9001->127.0.0.1:44500 (ESTABLISHED)
world     18567   root   39u  IPv4 632857      0t0  TCP 127.0.0.1:9001->127.0.0.1:44502 (ESTABLISHED)
world     18567   root   40u  IPv4 632858      0t0  TCP 127.0.0.1:9001->127.0.0.1:44504 (ESTABLISHED)
world     18567   root   41u  IPv4 632860      0t0  TCP 127.0.0.1:9001->127.0.0.1:44506 (ESTABLISHED)
world     18567   root   42u  IPv4 632862      0t0  TCP 127.0.0.1:9001->127.0.0.1:44508 (ESTABLISHED)
world     18567   root   43u  IPv4 632864      0t0  TCP 127.0.0.1:9001->127.0.0.1:44510 (ESTABLISHED)
world     18567   root   44u  IPv4 632865      0t0  TCP 127.0.0.1:9001->127.0.0.1:44512 (ESTABLISHED)
world     18567   root   45u  IPv4 632866      0t0  TCP 127.0.0.1:9001->127.0.0.1:44514 (ESTABLISHED)
world     18567   root   46u  IPv4 632868      0t0  TCP 127.0.0.1:9001->127.0.0.1:44516 (ESTABLISHED)
world     18567   root   47u  IPv4 632870      0t0  TCP 127.0.0.1:9001->127.0.0.1:44518 (ESTABLISHED)
world     18567   root   48u  IPv4 632872      0t0  TCP 127.0.0.1:9001->127.0.0.1:44520 (ESTABLISHED)
world     18567   root   50u  IPv4 632875      0t0  TCP 192.168.0.21:37114->192.168.0.21:5998 (ESTABLISHED)
zone      18579   root   19u  IPv4 629908      0t0  TCP 127.0.0.1:44492->127.0.0.1:9001 (ESTABLISHED)
zone      18579   root   20u  IPv4 626501      0t0  UDP *:7012 
zone      18581   root   19u  IPv4 627390      0t0  TCP 127.0.0.1:44508->127.0.0.1:9001 (ESTABLISHED)
zone      18581   root   20u  IPv4 627391      0t0  UDP *:7026 
zone      18583   root   19u  IPv4 628322      0t0  TCP 127.0.0.1:44518->127.0.0.1:9001 (ESTABLISHED)
zone      18583   root   20u  IPv4 628323      0t0  UDP *:7028 
zone      18586   root   19u  IPv4 626492      0t0  TCP 127.0.0.1:44464->127.0.0.1:9001 (ESTABLISHED)
zone      18586   root   20u  IPv4 627393      0t0  UDP *:7001 
zone      18589   root   19u  IPv4 626495      0t0  TCP 127.0.0.1:44504->127.0.0.1:9001 (ESTABLISHED)
zone      18589   root   20u  IPv4 626502      0t0  UDP *:7022 
zone      18592   root   19u  IPv4 628315      0t0  TCP 127.0.0.1:44468->127.0.0.1:9001 (ESTABLISHED)
zone      18592   root   20u  IPv4 629912      0t0  UDP *:7005 
zone      18595   root   19u  IPv4 627388      0t0  TCP 127.0.0.1:44484->127.0.0.1:9001 (ESTABLISHED)
zone      18595   root   20u  IPv4 627392      0t0  UDP *:7014 
zone      18598   root   19u  IPv4 632842      0t0  TCP 127.0.0.1:44482->127.0.0.1:9001 (ESTABLISHED)
zone      18598   root   20u  IPv4 632876      0t0  UDP *:7010 
zone      18601   root   19u  IPv4 628319      0t0  TCP 127.0.0.1:44488->127.0.0.1:9001 (ESTABLISHED)
zone      18601   root   20u  IPv4 628327      0t0  UDP *:7015 
zone      18604   root   19u  IPv4 628316      0t0  TCP 127.0.0.1:44476->127.0.0.1:9001 (ESTABLISHED)
zone      18604   root   20u  IPv4 628328      0t0  UDP *:7011 
zone      18607   root   19u  IPv4 626493      0t0  TCP 127.0.0.1:44480->127.0.0.1:9001 (ESTABLISHED)
zone      18607   root   20u  IPv4 629913      0t0  UDP *:7009 
zone      18610   root   19u  IPv4 626491      0t0  TCP 127.0.0.1:44460->127.0.0.1:9001 (ESTABLISHED)
zone      18610   root   20u  IPv4 626503      0t0  UDP *:7003 
zone      18613   root   19u  IPv4 631853      0t0  TCP 127.0.0.1:44520->127.0.0.1:9001 (ESTABLISHED)
zone      18613   root   20u  IPv4 631854      0t0  UDP *:7029 
zone      18615   root   19u  IPv4 627387      0t0  TCP 127.0.0.1:44470->127.0.0.1:9001 (ESTABLISHED)
zone      18615   root   20u  IPv4 628331      0t0  UDP *:7006 
zone      18620   root   19u  IPv4 628317      0t0  TCP 127.0.0.1:44478->127.0.0.1:9001 (ESTABLISHED)
zone      18620   root   20u  IPv4 628326      0t0  UDP *:7008 
zone      18622   root   19u  IPv4 628321      0t0  TCP 127.0.0.1:44502->127.0.0.1:9001 (ESTABLISHED)
zone      18622   root   20u  IPv4 628330      0t0  UDP *:7021 
zone      18625   root   19u  IPv4 627389      0t0  TCP 127.0.0.1:44498->127.0.0.1:9001 (ESTABLISHED)
zone      18625   root   20u  IPv4 632877      0t0  UDP *:7019 
zone      18628   root   19u  IPv4 629904      0t0  TCP 127.0.0.1:44462->127.0.0.1:9001 (ESTABLISHED)
zone      18628   root   20u  IPv4 629910      0t0  UDP *:7000 
zone      18632   root   19u  IPv4 629907      0t0  TCP 127.0.0.1:44490->127.0.0.1:9001 (ESTABLISHED)
zone      18632   root   20u  IPv4 626504      0t0  UDP *:7016 
zone      18634   root   19u  IPv4 628320      0t0  TCP 127.0.0.1:44494->127.0.0.1:9001 (ESTABLISHED)
zone      18634   root   20u  IPv4 628329      0t0  UDP *:7017 
zone      18636   root   19u  IPv4 553677      0t0  TCP 127.0.0.1:44472->127.0.0.1:9001 (ESTABLISHED)
zone      18636   root   20u  IPv4 553678      0t0  UDP *:7007 
zone      18639   root   19u  IPv4 626497      0t0  TCP 127.0.0.1:44510->127.0.0.1:9001 (ESTABLISHED)
zone      18639   root   20u  IPv4 627394      0t0  UDP *:7027 
zone      18643   root   19u  IPv4 627386      0t0  TCP 127.0.0.1:44458->127.0.0.1:9001 (ESTABLISHED)
zone      18643   root   20u  IPv4 632878      0t0  UDP *:7002 
zone      18647   root   19u  IPv4 629909      0t0  TCP 127.0.0.1:44514->127.0.0.1:9001 (ESTABLISHED)
zone      18647   root   20u  IPv4 629914      0t0  UDP *:7025 
zone      18649   root   19u  IPv4 626494      0t0  TCP 127.0.0.1:44496->127.0.0.1:9001 (ESTABLISHED)
zone      18649   root   20u  IPv4 628332      0t0  UDP *:7018 
zone      18654   root   19u  IPv4 628318      0t0  TCP 127.0.0.1:44486->127.0.0.1:9001 (ESTABLISHED)
zone      18654   root   20u  IPv4 629272      0t0  UDP *:7013 
zone      18656   root   19u  IPv4 609691      0t0  TCP 127.0.0.1:44512->127.0.0.1:9001 (ESTABLISHED)
zone      18656   root   20u  IPv4 609692      0t0  UDP *:7024 
zone      18658   root   19u  IPv4 629905      0t0  TCP 127.0.0.1:44466->127.0.0.1:9001 (ESTABLISHED)
zone      18658   root   20u  IPv4 626505      0t0  UDP *:7004 
zone      18661   root   19u  IPv4 626496      0t0  TCP 127.0.0.1:44506->127.0.0.1:9001 (ESTABLISHED)
zone      18661   root   20u  IPv4 632880      0t0  UDP *:7023 
zone      18665   root   19u  IPv4 629270      0t0  TCP 127.0.0.1:44500->127.0.0.1:9001 (ESTABLISHED)
zone      18665   root   20u  IPv4 632879      0t0  UDP *:7020 
queryserv 18667   root   12u  IPv4 629906      0t0  TCP 127.0.0.1:44474->127.0.0.1:9001 (ESTABLISHED)
ucs       18671   root   11u  IPv4 609634      0t0  UDP *:7778 
ucs       18671   root   13u  IPv4 626498      0t0  TCP 127.0.0.1:44516->127.0.0.1:9001 (ESTABLISHED)
Reply With Quote
  #6  
Old 06-29-2019, 01:00 AM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default

More Info.. This is what comes in when I'm sitting at the server list.
Code:
[Zone Server] Starting EQ Network server on port 7018
[Zone Server] Starting EQ Network server on port 7023
[Login Server] New SoD client connection from 192.168.0.56:58017	
[Login Server] Application packet received from client (size 14)
[Login Server] Session ready received from client.
[Login Server] Application packet received from client (size 36)
[Login Server] Login received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
I think I must have a miss configuration somewhere.. I'll keep trying to find it. Thanks again for the help.
Reply With Quote
  #7  
Old 06-29-2019, 01:23 AM
dclarkpf
Fire Beetle
 
Join Date: Jul 2005
Location: Grants Pass, Or
Posts: 20
Default

AH.. I fixed it. Thanks for the help.. Nothing to see here move along.
Reply With Quote
  #8  
Old 07-03-2021, 11:27 PM
John Adams
Demi-God
 
Join Date: Jul 2006
Posts: 1,552
Default

/necro
Since this is the only post on this entire forum that mentions "server_launcher.pl"

... it appears to be missing from the repo (?) unless it was supposed to be auto-generated somewhere along the line, not yet documented in the Linux ground-up docs. FYI.

In fact, it appears most of these "server_{etc}.pl" files are nowhere to be found. Sure I'm missing a step somewhere.
__________________
John Adams
My Projects [ EQ2Emulator.net ] [ VGOEmulator.net ] [ MMOEmulators.com ] [ EVEmulator.com ]
"When you quit quitting, does that still make you a quitter?" ~JA on coming out of retirement
Reply With Quote
  #9  
Old 07-04-2021, 12:49 AM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

Quote:
Originally Posted by John Adams View Post
/necro
Since this is the only post on this entire forum that mentions "server_launcher.pl"

... it appears to be missing from the repo (?) unless it was supposed to be auto-generated somewhere along the line, not yet documented in the Linux ground-up docs. FYI.

In fact, it appears most of these "server_{etc}.pl" files are nowhere to be found. Sure I'm missing a step somewhere.
They are all located on github.

https://github.com/Akkadius/EQEmuIns...e/master/linux
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #10  
Old 07-04-2021, 04:10 AM
John Adams
Demi-God
 
Join Date: Jul 2006
Posts: 1,552
Default

Yeah, holy smokes... that Linux guide needs some help Oddly, I checked out the entire Server repo and couldn't locate (linux) or find (Windows) any of those file names. Weird.

BUT!! I went into that eqemu_server.pl tool, found [assets] and [utility_scripts] and sure as sh!rt, there they were

Thanks again, dev. Saving the day (or, midnight as the case may be)
__________________
John Adams
My Projects [ EQ2Emulator.net ] [ VGOEmulator.net ] [ MMOEmulators.com ] [ EVEmulator.com ]
"When you quit quitting, does that still make you a quitter?" ~JA on coming out of retirement
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 08:33 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3