EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::Windows Servers (https://www.eqemulator.org/forums/forumdisplay.php?f=587)
-   -   Problem with standalone loading! (https://www.eqemulator.org/forums/showthread.php?t=34797)

pythag 11-30-2012 05:37 PM

The log.ini file remains empty,
The only feedback I get is as above
Assuming thats what you mean

c0ncrete 11-30-2012 05:55 PM

are you running EQEmuLoginServer? if so, your logs directory should have a file named something like login_1354312358.log. the contents of that file will likely tell you what is going on. if you are NOT running EQEmuLoginServer (or if it's closing due to an error), that's the problem. world is trying to connect to a login server that isn't running.

pythag 11-30-2012 06:05 PM

There is no login file but lots of zone/debug/world/quest zone picking a matching number
quest_zone
Code:

[11.29. - 22:17:42] Starting Log: logs/eqemu_quest_zone_5660.log
[11.29. - 22:17:42] Tying perl output to eqemu logs
[11.29. - 22:17:42] Creating EQEmuIO=HASH(0x99c6f3c)
[11.29. - 22:17:42] Creating EQEmuIO=HASH(0x99b984c)
[11.29. - 22:17:42] Loading perlemb plugins.
[11.29. - 22:17:42] Subroutine Cwd::fastcwd redefined at C:/Perl/lib/Cwd.pm line 812.
[11.29. - 22:17:42] Subroutine Cwd::getcwd redefined at C:/Perl/lib/Cwd.pm line 812.
[11.29. - 22:17:42] Subroutine Cwd::abs_path redefined at C:/Perl/lib/Cwd.pm line 812.
[11.29. - 22:17:43] Loading perl commands...
[11.29. - 22:18:08] Terminating on signal SIGHUP(1)

world
Code:

---------------------------------------------
[11.29. - 22:01:49] Starting Log: logs/eqemu_world_5068.log
[11.29. - 22:01:49] Using database 'peq' at localhost:3306
[11.29. - 22:01:49] EMuShareMem loaded
[11.29. - 22:01:50] Loading items from database: count=92475

zone
Code:

---------------------------------------------
[11.29. - 22:17:42] Starting Log: logs/eqemu_zone_5660.log
[11.29. - 22:17:42] Using database 'peq' at 127.0.0.1:3306
[11.29. - 22:17:42] EMuShareMem loaded

eqemu_error
Code:

[11.29. - 22:01:57] Starting Log: logs/eqemu_error_world_5068.log
[11.29. - 22:01:57] Could not load EQTime file eqtime.cfg


c0ncrete 11-30-2012 06:14 PM

i think you're missing a key point...

Quote:

Originally Posted by c0ncrete (Post 214929)
if you are NOT running EQEmuLoginServer (or if it's closing due to an error), that's the problem. world is trying to connect to a login server that isn't running.

if your world server isn't connecting to eqemulator.net to validate accounts, you will need to run your own login server (EQEmuLoginServer.exe). if the batch file you use to boot the emulator doesn't start the login server, that's where your problem is.

here's my startup.bat as an example:
Code:

@Echo Off

:start
CLS

Echo  EQ Emulator Option Menu
Echo ============================
Echo =  1. Localnet  Server    =
Echo =  2. Localhost Server    =
Echo =  3. Public    Server    =
Echo ============================
Echo  Default to Localnet in 10s

Set /p ErrorLevel="Which configuration? "
If not '%ErrorLevel%' == '' set choice=%choice:~0,1%
If %ErrorLevel% == 1 Goto localnet
If %ErrorLevel% == 2 Goto localhost
If %ErrorLevel% == 3 Goto public
GoTo Start

:localnet
Copy eqemu_config-localnet.xml eqemu_config.xml
Goto runprivateemu

:localhost
Copy eqemu_config-localhost.xml eqemu_config.xml
Goto runprivateemu

:public
Copy eqemu_config-public.xml eqemu_config.xml
Goto runpublicemu

:runprivateemu
start EQEmuLoginServer.exe
ping localhost -n 10 >nul
start World.exe
ping localhost -n 20 >nul
start EQLaunch.exe zone
ping localhost -n 10 >nul
start ChatServer.exe
Goto end

:runpublicemu
start World.exe
ping localhost -n 10 >nul
start EQLaunch.exe zone
ping localhost -n 10 >nul
Goto end

:end


pythag 11-30-2012 06:58 PM

That's got me to login
Need to pick this up tomorrow thank you

pythag 12-01-2012 05:33 AM

Ok have found the server select and its blank, its a step forward
Log file is the following, and have attemted to re-install peqlogindb (Myplace and place are the server short and long name)
Code:

[Debug] [12.01.12 - 09:27:21] Logging System Init.
[Debug] [12.01.12 - 09:27:21] Config System Init.
[Debug] [12.01.12 - 09:27:21] MySQL Database Init.
[Debug] [12.01.12 - 09:27:21] Encryption Initialize.
[Debug] [12.01.12 - 09:27:21] Encryption Loaded Successfully.
[Debug] [12.01.12 - 09:27:21] Server Manager Initialize.
[Network] [12.01.12 - 09:27:21] ServerManager listening on port 5999
[Debug] [12.01.12 - 09:27:21] Client Manager Initialize.
[Network] [12.01.12 - 09:27:21] ClientManager listening on Titanium stream.
[Network] [12.01.12 - 09:27:21] ClientManager listening on SoD stream.
[Debug] [12.01.12 - 09:27:21] Server Started.
[Network] [12.01.12 - 09:27:27] New world server connection from 127.0.0.1:1270
[Network Error] [12.01.12 - 09:27:27] Handle_NewLSInfo error, remote address was
 null, defaulting to stream address 127.0.0.1.
[World] [12.01.12 - 09:27:27] Server Myplace(place) attempted to log in but acco
unt and password did not match the entry in the database.


lerxst2112 12-01-2012 06:03 AM

http://www.eqemulator.org/forums/showthread.php?t=31783
Scroll down to "Setup PEQLoginDB DB and Logins" and follow the instructions to add your server entry.

-or-

You can try just removing the username/password from the loginserver section of your config file. You need to have "unregistered_allowed = TRUE" in login.ini for that to work.

pythag 12-01-2012 06:22 AM

Found it,
In my tblserveradminregistration there is a default user of Admin and Password
The sql files listed amend tblLoginServerAccounts and tblworldserverregistration

the tblserveradminregistration is not adjusted once I amended the eqemu_config to this it worked

Code:

                <!-- Loginserver information.  Defaults shown -->
                <loginserver>
                        <host>127.0.0.1</host>
                        <port>5999</port>
                        <account>Admin</account>
                        <password>Password</password>
                </loginserver>

I may be wrong but this to me was not clear, but thank you to

lerkst2112,noport,c0ncrete,blackdragonsdg (and any one else I missed) you have all been very patient and helpful

Now on to figure out setting my game :)


All times are GMT -4. The time now is 09:42 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.