From 12f3019fe47db9cf0979d36bb9eac1d411d4b6a4 Mon Sep 17 00:00:00 2001 From: gpanula Date: Sun, 16 Feb 2014 20:45:31 -0800 Subject: [PATCH] update the tblWorldServerRegistration table and add our server to it --- Linux-loginserver-notes.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Linux-loginserver-notes.md b/Linux-loginserver-notes.md index 6a594b2..3aaaf1d 100644 --- a/Linux-loginserver-notes.md +++ b/Linux-loginserver-notes.md @@ -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` \ No newline at end of file +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` +