Need help, i have a problems with server

08/01/2015 16:07 Oyuba#1
Hello everyone, I have a problem with the server. When I try to connect to open the game client. I can not open the game.exe because the server does not work, can you help me please?

P.S If there is already a debate like this, sorry I have not seen.
08/02/2015 00:34 [ADM]Lightning#2
Well start of with telling us about your test server. Is it episode 4 or 5. What exactly does the error say if one pops up. You can screenshot what it does or doesn't do.

So lets assume you installed the right SQL server example 2008R2 or 2012. Then lets assume you properly enabled the the named pipes and etc in the SQL configuration tool and changed the IPs to 127.0.0.1, we will then assume that you changed the IP addresses properly in the PSM_Client/Bin/Config to 127.0.0.01. We will then assume that you changed the IP in the game.exe using a hex editor and saved that.

So if that is all done and your using the right db, serverfiles and client. What do your logs show?
08/02/2015 02:51 Oyuba#3
When I open PSMServer_Mgr and go to "Start All Service Server" nothing happens, do not turn on the server, I ritentanto many times with SQL 2008 and 2012, but nothing.They do not activate it "Server Service".
08/02/2015 03:08 [ADM]Lightning#4
you have to install them to get them to start.

Are they red X's or green II?
08/02/2015 10:55 Oyuba#5
II are green, but even if I try to turn back immediately so II sometimes not activated

P.s Sorry, My english is not good
08/02/2015 19:21 [Alcatraz]#6
there a lot of things that could be wrong but if you followed the guide release here to a T you shouldn't have any problems if your having problems that usually means you missed something or over looked something ill post my guide here maybe it will help

this is my guide for my server files that work with sql 2014 and ep5 youll have to use what ever sql your server was built to be ran for.


hope this was helpful to you I spent a little time running into problems myself and this was the best way I found so far to install a server and pretty much get it right the first time installing it.
08/02/2015 22:51 Oyuba#7
Thank you for guidance, let you know if everything is okay. But, it works on Windows 8.1?
08/02/2015 22:57 SnickQ#8
Can you connect to your sql server with sql auth?
[Only registered and activated users can see links. Click Here To Register...]
08/03/2015 00:13 Big_#9
He needs to add privligas for the database account
08/03/2015 00:54 Oyuba#10
Quote:
Originally Posted by Big_ View Post
He needs to add privligas for the database account
privligas ??

Quote:
Originally Posted by [Alcatraz] View Post
there a lot of things that could be wrong but if you followed the guide release here to a T you shouldn't have any problems if your having problems that usually means you missed something or over looked something ill post my guide here maybe it will help

this is my guide for my server files that work with sql 2014 and ep5 youll have to use what ever sql your server was built to be ran for.


hope this was helpful to you I spent a little time running into problems myself and this was the best way I found so far to install a server and pretty much get it right the first time installing it.
No, I did not succeed. The service servers are all so II
Maybe I'm wrong procedure? There is a video of this guide?
08/03/2015 03:46 wallerus#11
It's more than likely the server can't connect to your database.
Quote:
Originally Posted by abrasive View Post
Services go to a green arrow, but then back to pause
This usually means the services were unable to connect to the database. Check your logs in D:\SHAIYA_SERVER\SERVER\PSM_Client\Bin\Log and D:\SHAIYA_SERVER\SERVER\PSM_Client\Log. These logs help tell you of problems with services starting, so keep that in mind for future problems.
Quote:
Originally Posted by SnickQ View Post
Can you connect to your sql server with sql auth?
[Only registered and activated users can see links. Click Here To Register...]
See SnickQ's post and see if you can log into the database using:
Login: Shaiya
Password: Shaiya123

Let us know if you are successful at doing that.
08/03/2015 07:14 [Alcatraz]#12
big is talking about when you go and create the account in the security folder for example if your using Shaiya as the account name and Shaiya123 as the password you also have to goto the server roles and check the sysadmn box

like so some screen shots off my home test server

[Only registered and activated users can see links. Click Here To Register...]
double click to open the settings

[Only registered and activated users can see links. Click Here To Register...]
08/03/2015 09:42 treica#13
It looks more like you're not having the linked servers try running this query :

Code:
if exists(select *
from master..sysservers
where isremote=1 and srvname='game')
begin
exec sp_dropserver 'game','droplogins'
end
exec sp_addlinkedserver 'game','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'game','false',null,'USER_SQL_SERVER','PASSWORD_SQL_SERVER'

if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_NCASH')
begin
exec sp_dropserver 'PS_NCASH','droplogins'
end
exec sp_addlinkedserver 'PS_NCASH','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_NCASH','false',null,'USER_SQL_SERVER','PASSWORD_SQL_SERVER'

if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_USERDB')
begin
exec sp_dropserver 'PS_USERDB','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB','false',null,'USER_SQL_SERVER','PASSWORD_SQL_SERVER'

if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_USERDB01')
begin
exec sp_dropserver 'PS_USERDB01','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB01','false',null,'USER_SQL_SERVER','PASSWORD_SQL_SERVER'

if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_DEFINEDB')
begin
exec sp_dropserver 'PS_DEFINEDB','droplogins'
end
exec sp_addlinkedserver 'PS_DEFINEDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_DEFINEDB','false',null,'USER_SQL_SERVER','PASS WORD_SQL_SERVER'

if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_GAMEDB01')
begin
exec sp_dropserver 'PS_GAMEDB01','droplogins'
end
exec sp_addlinkedserver 'PS_GAMEDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_GAMEDB01','false',null,'USER_SQL_SERVER','PASSWORD_SQL_SERVER'
Make sure to change where USER_SQL_SERVER and PASSWORD_SQL_SERVER with your database login credenials.
08/03/2015 11:26 Oyuba#14
Quote:
Originally Posted by wallerus View Post
It's more than likely the server can't connect to your database.




See SnickQ's post and see if you can log into the database using:
Login: Shaiya
Password: Shaiya123

Let us know if you are successful at doing that.
how do I enter them of access? me error
08/03/2015 15:01 momocruz#15
Quote:
Originally Posted by Oyuba View Post
how do I enter them of access? me error
this is an Example with this acces log , you have to use log you put when you have instaled SQL

and when you enter on your SQL use Linked Server From Treica