i need Help!! Cant join !!

Results 1 to 5 of 5
  1. #1
    Apprentice headhunTeR71 is offline
    MemberRank
    Sep 2008 Join Date
    8Posts

    i need Help!! Cant join !!

    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.........
    Attached Files Attached Files


  2. #2
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: i need Help!! Cant join !!

    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

  3. #3
    Apprentice headhunTeR71 is offline
    MemberRank
    Sep 2008 Join Date
    8Posts

    Re: i need Help!! Cant join !!

    Thx for all you perfect!!!

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


  4. #4
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: i need Help!! Cant join !!

    Looks ok. Is the windows firewall on? Can you ping windows from centos using the "ping" command?

  5. #5
    Apprentice headhunTeR71 is offline
    MemberRank
    Sep 2008 Join Date
    8Posts
    İ dont using firewall and disable antivirus program.

    my centos ping



    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
    Attached Files Attached Files
    Last edited by chumpywumpy; 03-05-09 at 01:37 PM.



Advertisement