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

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

Reply
 
Thread Tools Display Modes
  #1  
Old 07-15-2016, 09:58 AM
DanCanDo's Avatar
DanCanDo
Discordant
 
Join Date: May 2016
Location: Above Hell
Posts: 400
Default

Not sure what your using for config setups, but this a sample of the "modern"
day" standard one that I use. I don't have a loginserver.ini
eqemu_config :
Code:
<?xml version="1.0"?>
<server>
	<world>
		<shortname>myservername</shortname>
		<longname>My Server Name</longname>

		<!-- Only specify these two if you really think you need to.  (read: You don't) -->
		<address>127.0.0.1</address>
		<!-- <localaddress>192.168.0.10</localaddress> -->

		<!-- Loginserver information.  Defaults shown -->
		<loginserver>
			<host>127.0.0.1</host>
			<port>5999</port>
			<account></account>
			<password></password>
		</loginserver>

		<!-- Server status.  Default is unlocked -->
		<!--<locked/>-->
		<!-- <unlocked/> -->

		<!-- Sets the ip/port for the tcp connections.  Both zones and console (if enabled).  Defaults are shown -->
		<tcp ip="127.0.0.1" port="9000" telnet="disable"/>

		<!-- Sets the shared key used by zone/launcher to connect to world -->
		<key>somerandomstring1234567890</key>

		<!-- Enable and set the port for the HTTP service.  Defaults are shown -->
		<http port="9080" enabled="false" mimefile="mime.types" />
	</world>

	<!-- Chatserver (channels) information.  Defaults shown -->
	<chatserver>
		<host>127.0.0.1</host>
		<port>7778</port>
	</chatserver>

	<!-- Mailserver (in-game mail) information.  Defaults shown -->
	<mailserver>
		<host>127.0.0.1</host>
		<port>7778</port>
	</mailserver>

	<zones>
		<defaultstatus>0</defaultstatus>

		<!-- Sets port range for world to use to auto configure zones -->
		<ports low="7000" high="7500"/>
	</zones>

	<!-- Database configuration, replaces db.ini.  Defaults shown -->
	<database>
		<host>127.0.0.1</host>
		<port>3306</port>
		<username>root</username>
		<password>password</password>
		<db>peq</db>
	</database>

	<qsdatabase>
		<host>127.0.0.1</host>
		<port>3306</port>
		<username>root</username>
		<password>password</password>
		<db>peq</db>
	</qsdatabase>

	<!-- Launcher Configuration -->
	<launcher>
		<!-- <logprefix>logs/zone-</logprefix> -->
		<!-- <logsuffix>.log</logsuffix> -->
		<!-- <exe>zone.exe or ./zone</exe> -->
		<!-- <timers restart="10000" reterminate="10000"> -->
	</launcher>

	<!-- File locations.  Defaults shown -->
	<files>
		<!-- <spells>spells_us.txt</spells> -->
		<!-- <opcodes>opcodes.conf</opcodes> -->
		<!-- <logsettings>log.ini</logsettings> -->
		<!-- <eqtime>eqtime.cfg</eqtime> -->
	</files>
	<!-- Directory locations.  Defaults shown -->
	<directories>
		<!-- <maps>maps</maps> -->
		<!-- <quests>quests</quests> -->
		<!-- <plugins>plugins</plugins> -->
	</directories>
</server>
Sample of the login.ini that I use:
Code:
[database]
host = 127.0.0.1
port = 3306
db = peq
user = root
password = password
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 = 5999
local_network = 127.0.0.1
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 = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType
Reply With Quote
  #2  
Old 07-16-2016, 01:01 PM
Rymy
Fire Beetle
 
Join Date: Jul 2016
Posts: 13
Default

Thanks a lot DoCanDo. Made it past there! Now I see my server at server select, it says the status is "Locked". I click play and I get "That server is currently unavailable. Plese check the Everquest webage for current server status and try again later". I started debugging it some, but curious if my error is obvious.

Quote:
Originally Posted by LoginServer
[World Server] Server Shards of Dalaya(sod) successfully logged in.
[Debug] User: rymy
[Debug] Hash: 2e978f88b8d639711c7a6ccf4a38df2a49648a08
[Netcode] User-To-World Response received.
[Debug] Trying to find client with user id of 1.
[Debug] Found client with user id of 1 and account name of rymy.
[Debug] Found sequence and play of 5 1
[Netcode] [Size: 20]
0: 05 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 | ................
16: 01 00 00 00 | ....

[Netcode] Sending play response with following data, allowed 0, sequence 5, server number 1, message 326
[Netcode] [Size: 20]
0: 05 00 00 00 00 00 00 00 - 00 00 00 46 01 00 00 00 | ...........F....
16: 01 00 00 00 | ....

[Netcode] Sending play response for rymy.
Quote:
Originally Posted by eqemu_config.xml
<?xml version="1.0">

<server>
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>password</password>
<db>world</db>
</database>
<chatserver>
<host>localhost</host>
<port>10234</port>
</chatserver>

<mailserver>
<host>localhost</host>
<port>10234</port>
</mailserver>
<world>
<shortname>sod</shortname>
<longname>Shards of Dalaya</longname>
<!-- <address>localhost</address>-->
<localaddress>127.0.0.1</localaddress>
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>127.0.0.1</host>
<port>5999</port>
<account>root</account>
<password>password</password>
<!--<index>1</index>-->
</loginserver>
<unlocked/>
<key>somerandomstring1234567890</key>
<tcp ip="localhost" port="9000" telnet="disable"/>
</world>
<zones>
<!-- The defaultstatus is what status the new toons will have on your server -->
<defaultstatus>10</defaultstatus>

<!-- Sets port range for world to use to auto configure zones DO NOT EDIT RIGHT NOW-->
<ports low="7000" high="7100"/>
</zones>

<launcher>
<timers initial="5000" interval="5" />
</launcher>
</server>
Quote:
Originally Posted by login.ini
[database]
host = localhost
port = 3306
db = world
user = root
password = password
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 = 5999
local_network = 127.0.0.1

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType
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 02:06 PM.


 

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 - 2026, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3