update the tblWorldServerRegistration table and add our server to it

gpanula
2014-02-16 20:45:31 -08:00
parent ad4ecd287f
commit 12f3019fe4
+15 -1
@@ -9,11 +9,13 @@ Optionally can use subversion to pull down the whole "EQEmuLoginServer"
but so far I just need the zip file with the two *.a files
Now prep the database
~~~
`mysql -u eq -p -D eq < loginserver/login_util/EQEmuLoginServerDBInstall.sql`
`mysql -u eq -p -D eq < loginserver/login_util/tblLoginServerAccounts.sql`
`mysql -u eq -p -D eq < loginserver/login_util/tblServerAdminRegistration.sql`
`mysql -u eq -p -D eq < loginserver/login_util/tblServerListType.sql`
`mysql -u eq -p -D eq < loginserver/login_util/tblWorldServerRegistration.sql`
~~~
copy the login.ini to the eqemu root directory
`cp loginserver/login_util/login.ini ./`
@@ -24,4 +26,16 @@ symlink the opcodes to the eqemu root directory
`ln -s loginserver/login_util/login_opcodes.conf login_opcodes.conf`
`ln -s loginserver/login_util/login_opcodes_sod.conf login_opcodes_sod.conf`
And now should be able to start the loginserver via `Bin/loginserver`
Update the tblWorldServerRegistration table
mysql -u eq -p -D eq < ALTER TABLE tblWorldServerRegistration ADD ServerTrusted int(11);
Add your server to the tblWorldServerRegistration table
http://www.eqemulator.org/forums/showpost.php?p=174840&postcount=41
insert into tblworldserverregistration
(ServerID,ServerLongName,ServerTagDescription,ServerShortName,ServerListTypeID,ServerLastLoginDate,ServerLastIPAddr,ServerAdminID,Note)
values
('1','LongNameFromConfig','Blah','ShortNameFromConfig','3',now(),'192.168.1.105','1','');
And now should be able to start the loginserver via `Bin/loginserver`