|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
Support::Windows Servers Support forum for Windows EQEMu users. |

08-20-2017, 03:45 PM
|
Fire Beetle
|
|
Join Date: Aug 2017
Posts: 17
|
|
Greetings!
Please forgive the inconvenience - I am new to EQEmu, and I will admit things get a little complex for me sometimes.
I am interested in setting up a private server, I am running Everquest Titanium in Windows 10 x64.
I am trying to follow this guide.
I have just ran eqemu_install.bat as Administrator. What should I do once the process is finished?
|

08-22-2017, 04:50 AM
|
Sarnak
|
|
Join Date: Nov 2008
Location: UK
Posts: 57
|
|
a few small glitches!!
Thanks fot the previous answers!.. a quick wipe and the installer is great under 2012r2 server.
There are just Two things, one is whenever I try to run the server updater (eqemu_server.pl) I get the following message :- "wget is not recognised as an internal or external command". world is not recognised either. And finally,
no database connection found...running without.
Everything else works great, stable under 2012.
I have tried setting the path for wget, no luck, tried running wget as admin, no luck, DL'd the latest version of wget, no luck.
I'd really like to get this working!!!... please let me know your thoughts.
|

08-22-2017, 09:04 AM
|
 |
Sarnak
|
|
Join Date: Jul 2009
Location: USA
Posts: 87
|
|
Quote:
Originally Posted by rixcraven
Thanks fot the previous answers!.. a quick wipe and the installer is great under 2012r2 server.
There are just Two things, one is whenever I try to run the server updater (eqemu_server.pl) I get the following message :- "wget is not recognised as an internal or external command". world is not recognised either. And finally,
no database connection found...running without.
Everything else works great, stable under 2012.
I have tried setting the path for wget, no luck, tried running wget as admin, no luck, DL'd the latest version of wget, no luck.
I'd really like to get this working!!!... please let me know your thoughts.
|
Did you install the server as admin? is this a VM server? if so did you give it enough resources to operate with?
|

08-22-2017, 09:16 AM
|
Sarnak
|
|
Join Date: Nov 2008
Location: UK
Posts: 57
|
|
Hi, thanks for the help
Yep, its on VMware, installed with admin level security.
its got resources to spare... 80gb drive (60% spare right now), 8gb mem.
the host is VR ready, so we're not short of computing power!.
|

08-25-2017, 09:15 AM
|
Fire Beetle
|
|
Join Date: Jun 2013
Posts: 1
|
|
Install went ok I think, but when I run t_start_server_with_login_server.bat it tries to start up then just says Windows cannot find 'perl' Any clue ?
|

08-26-2017, 01:54 PM
|
Fire Beetle
|
|
Join Date: Aug 2017
Posts: 17
|
|
Everything seems to install fine, as well as the HeidiSQL database starts too, but somehow the client gets stuck on "Patching EverQuest...", and then tells me it couldn't establish a connection.
Help please and thank you!
|

08-26-2017, 03:00 PM
|
Fire Beetle
|
|
Join Date: Aug 2017
Posts: 17
|
|
Quote:
Originally Posted by The_Beast
|
I get in, but I don't know what the account name and password are. I tried using the ones in the MySQL database, but no go.
|

08-26-2017, 10:45 PM
|
 |
Discordant
|
|
Join Date: May 2016
Location: Under a rock
Posts: 290
|
|
Check your login.ini file. This setup is fail proof (if your loginserver.exe binary is working)
Code:
[database]
host = 127.0.0.1
port = 3306
db = peq <--edit database name to yours
user = user <--edit database username to yours
password = password <--edit database password to yours
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 = 127.0.0.
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 = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType
|
 |
|
 |

08-26-2017, 11:01 PM
|
 |
Discordant
|
|
Join Date: May 2016
Location: Under a rock
Posts: 290
|
|
Also, this type of eqemu_config.xml works good for local (same puter as client)
Edit the values in RED to whatever your user/names/passwords are.
Code:
<?xml version="1.0"?>
<server>
<world>
<shortname>Server Name</shortname>
<longname>servername</longname>
<!-- Only specify these two if you really think you need to. (read: You don't) -->
<address>127.0.0.1</address>
<localaddress>127.0.0.1</localaddress>
<loginserver>
<host>127.0.0.1</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver>
<!-- Server status. Default is unlocked -->
<!--<locked/>-->
<!-- <unlocked/> -->
<!-- Sets the ip/port for the tcp connections. Both zones and console (if enabled). Defaults are shown -->
<tcp ip="127.0.0.1" port="9000" telnet="disable"/>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>somerandomstringofcharacters</key>
<!-- Enable and set the port for the HTTP service. Defaults are shown -->
<http port="9080" enabled="false" mimefile="mime.types" />
</world>
<!-- Chatserver (channels) information. Defaults shown -->
<chatserver>
<host>127.0.0.1</host>
<port>7778</port>
</chatserver>
<!-- Mailserver (in-game mail) information. Defaults shown -->
<mailserver>
<host>127.0.0.1</host>
<port>7778</port>
</mailserver>
<zones>
<defaultstatus>0</defaultstatus>
<!-- Sets port range for world to use to auto configure zones -->
<ports low="7100" high="7500"/>
</zones>
<!-- Database configuration, replaces db.ini. Defaults shown -->
<database>
<host>127.0.0.1</host>
<port>3306</port>
<username>user</username>
<password>pass</password>
<db>peq</db>
</database>
<qsdatabase>
<host>127.0.0.1</host>
<port>3306</port>
<username>user</username>
<password>pass</password>
<db>peq</db>
</qsdatabase>
<!-- Launcher Configuration -->
<launcher>
<!-- <logprefix>logs/zone-</logprefix> -->
<!-- <logsuffix>.log</logsuffix> -->
<!-- <exe>zone.exe or ./zone</exe> -->
<!-- <timers restart="10000" reterminate="10000"> -->
</launcher>
<!-- File locations. Defaults shown -->
<files>
<!-- <spells>spells_us.txt</spells> -->
<!-- <opcodes>opcodes.conf</opcodes> -->
<!-- <logsettings>log.ini</logsettings> -->
<!-- <eqtime>eqtime.cfg</eqtime> -->
</files>
<!-- Directory locations. Defaults shown -->
<directories>
<maps>maps/</maps>
<quests>quests/</quests>
<plugins>plugins/</plugins>
<lua_modules>lua_modules/</lua_modules>
<patches>./</patches>
<shared_memory>shared/</shared_memory>
<logs>logs/</logs>
</directories>
</server>
|
 |
|
 |

09-06-2017, 11:15 PM
|
Fire Beetle
|
|
Join Date: Sep 2017
Posts: 5
|
|
Problems after install
Hello,
I am curious if anyone else has noticed this problem after using this installer.
If I try to use any warrior discs like Defensive etc, I get an error that I am too distracted to use a skill. After receiving that error I can no longer click anything or attack anything as it just says I am too distracted. I have been running for almost a year and it is a recent development without any changes to the server.
Using Windows 2012 R2 as server
Using SOD Client.
|

09-08-2017, 08:38 AM
|
Fire Beetle
|
|
Join Date: Sep 2017
Posts: 5
|
|
Just as an update, I did a completely fresh install with the newest package on a new VM and it is doing the same thing. Warrior discs don't seem to work.
|
 |
|
 |

09-08-2017, 10:49 AM
|
 |
Administrator
|
|
Join Date: Feb 2009
Location: MN
Posts: 2,072
|
|
Quote:
Originally Posted by jedder1977
Just as an update, I did a completely fresh install with the newest package on a new VM and it is doing the same thing. Warrior discs don't seem to work.
|
Issue a binary update, and let me know what you find
Single command
Code:
perl eqemu_server.pl windows_server_latest
Interactive mode
Code:
C:\EQEmu\servers\peq_server>perl eqemu_server.pl
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>> EQEmu Server Main Menu >>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[database] Enter database management menu
[assets] Manage server assets
[new_server] New folder EQEmu/PEQ install - Assumes MySQL/Perl installed
[setup_bots] Enables bots on server - builds code and database requirements
exit
Enter a command #> assets
>>> Server Assets Menu
[maps] Download latest maps
[opcodes] Download opcodes (Patches for eq clients)
[quests] Download latest quests
[plugins] Download latest plugins
[lua_modules] Download latest lua_modules
[utility_scripts] Download utility scripts to run and operate the EQEmu Server
>>> Windows
[windows_server_download] Updates server via latest 'stable' code
[windows_server_latest] Updates server via latest commit 'unstable'
[windows_server_download_bots] Updates server (bots) from latest 'stable'
[fetch_dlls] Grabs dll's needed to run windows binaries
[setup_loginserver] Sets up loginserver for Windows
> main - go back to main menu
Enter a command #> windows_server_latest
[Update] Fetching Latest Windows Binaries (unstable) from Appveyor...
[Copy] folder doesn't exist, creating 'updates_staged/'
[Download] Saved: (updates_staged/master_windows_build_pdb.zip) from https://ci.appveyor.com/api/projects/KimLS/server/artifacts/build_x86_pdb.zip
[Download] Saved: (updates_staged/master_windows_build.zip) from https://ci.appveyor.com/api/projects/KimLS/server/artifacts/build_x86.zip
[Update] Fetched Latest Windows Binaries (unstable) from Appveyor...
[Update] Extracting... ---
[Unzip] Extracting...
[Unzip] Extracting...
[Update] Installing :: eqlaunch.exe
[Update] Installing :: eqlaunch.pdb
[Update] Installing :: export_client_files.exe
[Update] Installing :: export_client_files.pdb
[Update] Installing :: import_client_files.exe
[Update] Installing :: import_client_files.pdb
[Update] Installing :: loginserver.exe
[Update] Installing :: loginserver.pdb
[Update] Installing :: queryserv.exe
[Update] Installing :: queryserv.pdb
[Update] Installing :: shared_memory.exe
[Update] Installing :: shared_memory.pdb
[Update] Installing :: tests.exe
[Update] Installing :: tests.pdb
[Update] Installing :: ucs.exe
[Update] Installing :: ucs.pdb
[Update] Installing :: world.exe
[Update] Installing :: world.pdb
[Update] Installing :: zone.exe
[Update] Installing :: zone.pdb
[Update] Done
|
 |
|
 |

08-29-2017, 09:34 PM
|
Fire Beetle
|
|
Join Date: Aug 2017
Posts: 17
|
|
I have two further questions:
1- When opening t_start_with_login_server, I get the following.
Is this meant to happen or am I doing something wrong?
2 - The second has to do with not being able to create or login with any name or password I input in the launcher (I'm trying to set this up in a local LAN). How do I get past that?
|

08-29-2017, 11:55 PM
|
 |
Sarnak
|
|
Join Date: May 2005
Posts: 37
|
|
I think records of tblWorldServerRegistration table in your database are not consistent with your eqemu_config.xml.
But it shouldn't affect playing. You can still login and play, can't you?
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 06:20 PM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |