mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-04 00:40:26 +00:00
fix formating
+12
-9
@@ -10,11 +10,11 @@ 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
|
||||||
@@ -23,19 +23,22 @@ Edit login.ini, set the database info(user,passwd, etc)
|
|||||||
not sure what "local_network" under [options] is used for
|
not sure what "local_network" under [options] is used for
|
||||||
|
|
||||||
symlink the opcodes to the eqemu root directory
|
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`
|
ln -s loginserver/login_util/login_opcodes.conf login_opcodes.conf
|
||||||
|
ln -s loginserver/login_util/login_opcodes_sod.conf login_opcodes_sod.conf
|
||||||
|
~~~
|
||||||
|
|
||||||
Update the tblWorldServerRegistration table
|
Update the tblWorldServerRegistration table
|
||||||
mysql -u eq -p -D eq < ALTER TABLE tblWorldServerRegistration ADD ServerTrusted int(11);
|
`mysql -u eq -p -D eq < ALTER TABLE tblWorldServerRegistration ADD ServerTrusted int(11);`
|
||||||
|
|
||||||
Add your server to the tblWorldServerRegistration table
|
Add your server to the tblWorldServerRegistration table
|
||||||
http://www.eqemulator.org/forums/showpost.php?p=174840&postcount=41
|
http://www.eqemulator.org/forums/showpost.php?p=174840&postcount=41
|
||||||
|
~~~
|
||||||
insert into tblworldserverregistration
|
insert into tblworldserverregistration
|
||||||
(ServerID,ServerLongName,ServerTagDescription,ServerShortName,ServerListTypeID,ServerLastLoginDate,ServerLastIPAddr,ServerAdminID,Note)
|
(ServerID,ServerLongName,ServerTagDescription,ServerShortName,ServerListTypeID,ServerLastLoginDate,ServerLastIPAddr,ServerAdminID,Note)
|
||||||
values
|
values
|
||||||
('1','LongNameFromConfig','Blah','ShortNameFromConfig','3',now(),'192.168.1.105','1','');
|
('1','LongNameFromConfig','Blah','ShortNameFromConfig','3',now(),'192.168.1.105','1','');
|
||||||
|
~~~
|
||||||
|
|
||||||
And now should be able to start the loginserver via `Bin/loginserver`
|
And now should be able to start the loginserver via `Bin/loginserver`
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user