View Single Post
  #14  
Old 10-24-2017, 09:25 AM
Jokerpatch
Fire Beetle
 
Join Date: Nov 2008
Location: Overthere
Posts: 9
Default

i did fix the build issue, i had an issue of not being able to see my server on the select list; i figured that problem but now i get 1017 error when i click play after selecting my server. usually about a 20 second delay before it pops the error.

my eqemu server and loginserver are on the same vm on my laptop. i'm not sure if there should be a difference between using localhost vs. 127.0.0.1 i was trying all kinds of things just to get my server to show up on the list.

if i did somethings wrong i would really appreciate some explanation on what i did wrong and why it has to work a certain way.

EQEMU_CONFIG:

Code:
<?xml version="1.0">
<server>
	<world>
		<shortname>Coco</shortname>
		<longname>Colossal Quest</longname>

		<address>localhost</address>

		<loginserver>
			<host>localhost</host>
			<port>5998</port>
			<account></account>
			<password></password>
		</loginserver>


		<tcp ip="127.0.0.1" port="9001"/>
		<telnet ip="0.0.0.0" port="9000" enabled="true"/>

		<key>T7F9umXJkJpZE9Z36YB6wMX1FDj0xWX</key>

		<http port="9080" enabled="true" mimefile="mime.types" />
	</world>

	<chatserver>
		<host></host>
		<port>7500</port>
	</chatserver>

	<mailserver>
		<host></host>
		<port>7500</port>
	</mailserver>

	<zones>
	<defaultstatus>0</defaultstatus>

	<ports low="7000" high="7400"/>
	</zones>

	<database>
	   <host>localhost</host>
	   <port>3306</port>
	   <username>****</username>
	   <password>****</password>
	   <db>eqemu</db>
	</database>	

	<qsdatabase>
	   <host>localhost</host>
	   <port>3306</port>
	   <username>****</username>
	   <password>****</password>
	   <db>eqemu</db>
	</qsdatabase>

	<webinterface>
		<port>9081</port>
	</webinterface>

	<launcher>
	</launcher>

	<files>
	</files>
	<directories>
	</directories>
</server>
LOGIN.INI:
Code:
[database]
host = localhost
port = 3306
db = ****
user = ****
password = emu
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 = localhost
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
Reply With Quote