i need Help!! Cant join !!

Newbie Spellweaver
Joined
Sep 25, 2008
Messages
6
Reaction score
0
Hi,
i using Chumpy's server repackv2.5 (thanx for all). But i can not join game. Maybe i cant building client files. (Sorry my English is bad.) PLS HELP ME!!

MY log files in Attachments

Thanx for all.........
 

Attachments

The login server is showing your connection attempts so you are halfway there. The problem is this:

[##ERROR##] DB ERROR(MSG) : [unixODBC][FreeTDS][SQL Server]Server is unavailable or does not exist.

I suspect you are using mssql2005 express s you probably have remote connections disabled or mssql installed as a named instance.

Run the script below in mssql, post the results and it will tell me what is wrong.

Code:
Declare @insname varchar(25)
if convert(varchar(25),serverproperty('instancename')) is null
  set @insname='MSSQLSERVER'
else
  set @insname=convert(varchar(25),serverproperty('instancename'))
  select host_name() as 'HostName',@insname as 'Instance',
  serverproperty('productversion') as 'Ver', serverproperty('productlevel') as 'Level',
  serverproperty('edition') as 'Edition'
  if @insname<>'MSSQLSERVER'
  begin
    select 'THIS IS BAD! You must reinstall MSSQL' as 'MSSQL is a named instance!'
  end
-- If > 2000 check the instance registry path and if remote connections
-- are enabled.
if serverproperty('productversion')>'9'
  begin
    Declare @inspath varchar(10),@reg varchar(100),@tcpremote as int
    EXEC master.dbo.xp_regread @rootkey='HKEY_LOCAL_MACHINE',
    @key='Software\Microsoft\Microsoft SQL Server\Instance Names\SQL\',
    @value_name=@insname,
    @value=@inspath OUTPUT
    set @reg='Software\Microsoft\Microsoft SQL Server\' + @inspath + '\MSSQLSERVER\SuperSocketNetLib\tcp\'
    EXEC master.dbo.xp_regread @rootkey='HKEY_LOCAL_MACHINE',
    @key=@reg,
    @value_name='Enabled',
    @value=@tcpremote OUTPUT
    select @inspath as 'Instance path',@tcpremote as 'Remote connections enabled?'
    if @tcpremote='0'
      begin
        EXEC master.dbo.xp_regwrite @rootkey='HKEY_LOCAL_MACHINE',
        @key=@reg, @value_name='Enabled', @type='REG_DWORD',@value=1
        select '! Please reboot !' as 'I had to enable remote connections'
      end
    else
      begin
        select 'This is good!' as 'Remote connections already enabled'
      end
  end
else
  begin
    select 'Nothing else to check' as 'MSSQL version < 2005'
  end
 
Upvote 0
Thx for all you perfect!!!

But, is it normal? (I am noob thnx for all :))

headhunTeR71 - i need Help!! Cant join !! - RaGEZONE Forums
 
Upvote 0
İ dont using firewall and disable antivirus program.

my centos ping

headhunTeR71 - i need Help!! Cant join !! - RaGEZONE Forums


Do you make a mistake I'm wondering if client setup Is it possible that we can understand

My cabal ini files Do you wonder if the error is here

Hey man you perfect!!
Thanx for all its running!!!!!!

Thanx
Thanx
Thanx
Thanx
 

Attachments

Last edited by a moderator:
Upvote 0
Back