Can't connect to my server / Gm tools problem!

Results 1 to 22 of 22
  1. #1
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Can't connect to my server / Gm tools problem!

    GM Tools Problem: When i put my MSSQL IP: 192.168.1.5 and my logon: sa and pass, i try to connect but i can't, it says that somthing is wrong or 'make sure that no firewall is on the way'

    Cant connect to my server. When it asked for Ip adress i put these one.
    Server ip Adress: My centOS ip (192.168.1.20)
    MSSQL IP Adress: 192.168.1.5
    Now i put the files that was on the patch folder in repack 2.8 on my Cabal folder, i change the internal.txt putting my CentOS lan ip <didnt work> and it didnt work too with my lan ip> 192.168.1.1 and 192.168.1.5... I'm using Wireless D-link ADSL2+ Router 2640T, on VmWare i put Bridged, and my VmNetwork's adapter's are disabled!


  2. #2
    Account Upgraded | Title Enabled! Darkcyde is offline
    MemberRank
    Oct 2008 Join Date
    OptionPool.scpLocation
    203Posts

    Re: Can't connect to my server / Gm tools problem!

    For issue #1 being the GM tool, try and enter the IP as 127.0.0.1 if you are running the DB's locally.

    For #2 when you installed CentOS did you make sure to disable the firewall as mentioned in the install guide?

  3. #3
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    its the Pre Installed CentOS on VmWare, i should turn off my Windows firewall?

    ---------- Post added at 06:09 PM ---------- Previous post was at 05:53 PM ----------

    this is the problem that im getting on GM Tool Kit - Binary Mass Game, i have all db's installed and xpmd5 is executed on query.
    [COLOR="Silver"]

  4. #4
    Account Upgraded | Title Enabled! Darkcyde is offline
    MemberRank
    Oct 2008 Join Date
    OptionPool.scpLocation
    203Posts

    Re: Can't connect to my server / Gm tools problem!

    Based on the SS, it looks like you may have installed SQL wrong.. What version of SQL are you running and did you follow a guide to install it? It looks like you may have installed as a Named Instance which will not work for the Cabal DB's. The only fix for this is to uninstall and reinstall making sure to follow Chumpys guide word for word. I always use SQL Express 2005 and follow the guide making sure to install as a default instance and running the surface area configuration wizard to open up Named Pipes and TCP/IP connections.

    Also like I said before, if you are running SQL locally on your windows box it is best to use the loopback address for GM tools.. Instead of using your SQL lan address use 127.0.0.1

    For the CentOS VMware, Which image did you use? Post a link to the DL... In CentOS make sure the firewall is disabled and that you are in fact using static IP's that match your network.. From your windows machine can you ping the CentOS IP? Can you reach the internet from CentOS, to test open up Terminal and ping google.com and see if you get a reply, if not you either have the wrong IP's or no default gateway set up..

    I always prefer to install CentOS myself rather than use premade images to avoid these kinds of problems. I'm sure people work very hard to create "ready to run" images but the same setup wont work for everyone. If worse comes to worse, you would be better off deleting the image and installing CentOS yourself from a DVD ISO. Chumpy has a guide for doing this.

    Hope this helps..
    Last edited by Darkcyde; 08-12-09 at 07:44 PM.

  5. #5
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    yes, i'm using sql 2005 express(http://www.microsoft.com/downloads/d...displaylang=en) i follow the guide, but there is somes parts in my installation that are missing and have in the Guide, some options on Installation, in my SQL didnt appear, but in the tutorial it appears.

    Oh well, i'll need to download CentOS image, but its too big and my internet speed is low ><, i didnt change any ips on WorldSv_Ini and OBDC Ini, because i cant found WorlSv on my root folder, i'm using repack 2.8, maybe this is the problem? I can ping from Windows the centos lan ip fine, and ping google.com too. U mean that the Windows firewall may be disabled?
    Last edited by iLusioN^xD; 08-12-09 at 08:05 PM.

  6. #6
    Account Upgraded | Title Enabled! Darkcyde is offline
    MemberRank
    Oct 2008 Join Date
    OptionPool.scpLocation
    203Posts

    Re: Can't connect to my server / Gm tools problem!

    No, I mean the CentOS firewall, without it disabled the server will refuse connections.

  7. #7
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    oh, i didnt disabled it, where it is located, i'm using pre-installed image, so there is a firewall or not ?

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

    Re: Can't connect to my server / Gm tools problem!

    Not on the pre-installed.

    You said your vm network adaptors are disabled and that is bad. One of them is the one you need to communicate with centos on. Once done make sure windows can ping centos and centos can ping windows.

    For the SQL problem run the query below in any database and post the results.

    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 @insname as 'Instance',
      serverproperty('productversion') as 'Ver', serverproperty('productlevel') as 'SP',
      serverproperty('edition') as 'Edition'
      if @insname<>'MSSQLSERVER'
      begin
        select 'THIS IS BAD! You must reinstall MSSQL. Please follow the guides next time.' as 'MSSQL is a named instance!'
      end
    
      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 'I enabled remote connections ! Please reboot !' as 'Remote connections checker'
          end
        else
          begin
            select 'This is good! I have nothing to do :(' as 'Remote connections checker'
          end
        select account.dbo.fn_md5('test') as 'xp_md5.dll check'
      end

  9. #9
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    OK, and other thing, its needed to change the ips on cabal server files, like OBDC an WorldSv isnt it? But, i cant found the WorldSV on my root to change the IP's i thihk that i dont have it >< i'm using repack 2.8
    Results:

  10. #10
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    These are my logs on the attachment, just remebering, i didnt change any ip on cabal server files, like OBDC.ini and WorldSvr because i cant find it on repack 2.8, i think its missing!
    Attached Files Attached Files

  11. #11
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    These are the last ones logs on the attachment, i couldnt put all on previous post!
    Attached Files Attached Files

  12. #12
    ANTI emi is offline
    MemberRank
    Mar 2009 Join Date
    ZHLocation
    1,378Posts

    Re: Can't connect to my server / Gm tools problem!

    repost those:CashDBAgent.txt
    ChatNode_01.txt
    DBAgent_01.txt
    GlobalDBAgent.txt
    GlobalMgrSvr.txt



    They are not complete
    However you get weird erros:O

  13. #13
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts
    OK right now, i installed the CentOS Image according to the Video tut, all fine, installed with th according IPS, i can ping normally without any problems, now my internal txt i've put my CentOS lan ip, but i cant connect to my server, i'm using the patch that is on the /root/clientpatch ;\

    well i'm seeing now that i didnt forward the ports correctly, after i do this i post the results! well its not needed, cuz i'm just trying to connect via LAN, but i cant connect ;\

    this is my logs on DBAgent and GlobalDB, i'm getting errors on this two logs
    Attached Files Attached Files
    Last edited by chumpywumpy; 09-12-09 at 08:57 PM.

  14. #14
    ANTI emi is offline
    MemberRank
    Mar 2009 Join Date
    ZHLocation
    1,378Posts

    Re: Can't connect to my server / Gm tools problem!

    Your server does not connect to sql,make sure there is no (windows)Firewall in the way and also be sure you introduced the right login details

  15. #15
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    so, maybe, the problem that i cant connect to my server is the SQL that i cant connect via my server?

    ---------- Post added at 05:50 PM ---------- Previous post was at 05:34 PM ----------

    i've disabled the firewall, and tried to connect withh all logins that i know in my MSSQL, i'm recieving error.. i changed the MSSQL ip 192.168.1.5 to 192.168.1.15 and now i'm getting error only on DB agent, that is the same error as before

    ---------- Post added at 07:33 PM ---------- Previous post was at 05:50 PM ----------

    bump! i'm re-installing the MSSQL properly, btw, my MSSQL installation don't have the 'ADD user to the SQL Administration ROLE'
    Last edited by iLusioN^xD; 09-12-09 at 06:53 PM.

  16. #16
    ANTI emi is offline
    MemberRank
    Mar 2009 Join Date
    ZHLocation
    1,378Posts

    Re: Can't connect to my server / Gm tools problem!

    are you sure picked up "Advanced config" at the beginning of install?

  17. #17
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    ok i found a version with it! now the main problem is the SQL that its not connecting?
    Last edited by iLusioN^xD; 09-12-09 at 08:51 PM.

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

    Re: Can't connect to my server / Gm tools problem!

    Quote Originally Posted by emi5893 View Post
    are you sure picked up "Advanced config" at the beginning of install?
    I'm pretty sure not but definitely in the first install. There is a pretty big "THIS IS BAD!" in there.

    You need to reinstall MSSQL as the instance name can't be changed once installed. Make sure you pick the advanced install and disable the named instance setting (you need a default instance) which is on by default.

    Look in my sig for my sql guide and find that section. That query i gave you would force the only other setting needed and the xp_md5 check passed ok.

  19. #19
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    ok ty i'm already configured it according to your tutorial..

    ---------- Post added at 08:37 PM ---------- Previous post was at 08:11 PM ----------

    Yes, finally i can enter in my sv, i configured MSSQL wrong! ty for everyone who helped me

  20. #20
    ANTI emi is offline
    MemberRank
    Mar 2009 Join Date
    ZHLocation
    1,378Posts

    Re: Can't connect to my server / Gm tools problem!

    press thanks button :D or moods here will get mad:D
    And gz

  21. #21
    Valued Member iLusioN^xD is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    147Posts

    Re: Can't connect to my server / Gm tools problem!

    I cant create a char in-game i get this error:
    Cannot proceed due unknow DB errors

  22. #22
    ANTI emi is offline
    MemberRank
    Mar 2009 Join Date
    ZHLocation
    1,378Posts

    Re: Can't connect to my server / Gm tools problem!

    these have been responded before so just search omg!
    lazy people
    1)Delete from GAMEDB -->> Store Procedures --->> Delete sp_newchar and sp_delchar
    2)Download this files http://www.mediafire.com/?5ixtgmgyqzg and http://www.mediafire.com/?xqcyemwymon
    3)Open Query Analyser , select DB (GAMEDB) and open first file ... click "Execute Query"
    4)Same do with second file (Open it, Execute Query)

    Credits to ^fix^



Advertisement