mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-04 00:40:26 +00:00
update the tblWorldServerRegistration table and add our server to it
+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
|
but so far I just need the zip file with the two *.a files
|
||||||
|
|
||||||
Now prep the database
|
Now prep the database
|
||||||
|
~~~
|
||||||
`mysql -u eq -p -D eq < loginserver/login_util/EQEmuLoginServerDBInstall.sql`
|
`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/tblLoginServerAccounts.sql`
|
||||||
`mysql -u eq -p -D eq < loginserver/login_util/tblServerAdminRegistration.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/tblServerListType.sql`
|
||||||
`mysql -u eq -p -D eq < loginserver/login_util/tblWorldServerRegistration.sql`
|
`mysql -u eq -p -D eq < loginserver/login_util/tblWorldServerRegistration.sql`
|
||||||
|
~~~
|
||||||
|
|
||||||
copy the login.ini to the eqemu root directory
|
copy the login.ini to the eqemu root directory
|
||||||
`cp loginserver/login_util/login.ini ./`
|
`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.conf login_opcodes.conf`
|
||||||
`ln -s loginserver/login_util/login_opcodes_sod.conf login_opcodes_sod.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`
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user