Raised This Month: $51 Target: $400
 12% 

[CS:GO] Server connection issues


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-17-2012 , 22:08   [CS:GO] Server connection issues
Reply With Quote #1

Here is what I get in console when trying to connect via server browser:

Code:
Connecting to public(68.80.219.11:27015) ...
14.026:  Sending UDP connect to public IP 68.80.219.11:27015
Server using 'public' lobbies, requiring pw no, lobby id 0
RememberIPAddressForLobby: lobby 0 from address 68.80.219.11:27015
Grace request retry for unreserved server...
Retrying public(68.80.219.11:27015) ...
14.058:  Sending UDP connect to public IP 68.80.219.11:27015
Server using 'public' lobbies, requiring pw no, lobby id 0
RememberIPAddressForLobby: lobby 0 from address 68.80.219.11:27015
Server approved grace request...
Retrying connection to 68.80.219.11:27015, server requires lobby reservation but is unreserved.
Received game details information from 68.80.219.11:27015...
[MM] Sending reservation request to 68.80.219.11:27015
[MM] Sending reservation request to 192.168.0.198:27015
This is what I get when using connect in console:
Game disconnects me with this.
Failed to get session data. Please try again.
Code:
] connect 68.80.219.11:27015
Connecting to public(68.80.219.11:27015) ...
98.938:  Sending UDP connect to public IP 68.80.219.11:27015
Server using 'public' lobbies, requiring pw no, lobby id 186000053a29b1f
RememberIPAddressForLobby: lobby 186000053a29b1f from address 68.80.219.11:27015
Unknown command "joingame"
GameTypes: could not find matching game type "".
CSysSessionClient: Could not get lobby data
Gameserver is on a different computer than the one trying to connect but same IP.
Had no problems connecting before recent update to cs:go.

Code:
21:34:58 meta version
21:34:58 Metamod:Source version 1.9.0-dev
         Build ID: 789:53d15f6faed7-dev
         Loaded As: Valve Server Plugin
         Compiled on: Jul 22 2012
         Plugin interface version: 15:14
         SourceHook version: 5:5
         http://www.metamodsource.net/
21:36:19 sm version
21:36:19  SourceMod Version Information:
             SourceMod Version: 1.5.0-dev
             SourcePawn Engine: SourcePawn 1.1, jit-x86 (build 1.5.0-dev)
             SourcePawn API: v1 = 4, v2 = 4
             Compiled on: Aug 10 2012 19:08:07
             Build ID: 3603:d3fd010be8fe-dev
             http://www.sourcemod.net/
21:48:31 sm plugins list
21:48:31 [SM] Listing 19 plugins:
           01 "Admin File Reader" (1.5.0-dev) by AlliedModders LLC
           02 "Admin Help" (1.5.0-dev) by AlliedModders LLC
           03 "Admin Menu" (1.5.0-dev) by AlliedModders LLC
           04 "Anti-Flood" (1.5.0-dev) by AlliedModders LLC
           05 "Basic Ban Commands" (1.5.0-dev) by AlliedModders LLC
           06 "Basic Chat" (1.5.0-dev) by AlliedModders LLC
           07 "Basic Comm Control" (1.5.0-dev) by AlliedModders LLC
           08 "Basic Commands" (1.5.0-dev) by AlliedModders LLC
           09 "Basic Info Triggers" (1.5.0-dev) by AlliedModders LLC
           10 "Basic Votes" (1.5.0-dev) by AlliedModders LLC
           11 "Client Preferences" (1.5.0-dev) by AlliedModders LLC
           12 "Deathmatch" (1.2) by |NA| Snip3r
           13 "Fun Commands" (1.5.0-dev) by AlliedModders LLC
           14 "Fun Votes" (1.5.0-dev) by AlliedModders LLC
           15 "Killer Info Display" (1.3.1) by Berni, gH0sTy, Smurfy1982, Snake60
           16 "Nextmap" (1.5.0-dev) by AlliedModders LLC
           17 "Player Commands" (1.5.0-dev) by AlliedModders LLC
           18 "Reserved Slots" (1.5.0-dev) by AlliedModders LLC
           19 "Sound Commands" (1.5.0-dev) by AlliedModders LLC
Batch Start Script:

Code:
srcds.exe -game csgo -console -usercon +game_type 0 +game_mode 0 +mapgroup mg_bomb +map de_dust2
GameModes_Server.txt

Code:
"GameModes_Server.txt"
{
    "gameTypes"
    {
        "classic"
        {
            "gameModes"
            {
                "casual"
                {
                    "convars"
                    {
                        "mp_friendlyfire"    "0"
                        "mp_maxrounds" "3"
                        "mp_timelimit" "25"
                        "mp_roundtime" "30"
                    }
                    "mapgroupsMP"
                    {
                        "mg_bomb" ""
                    }
                }
            }    
        }
    }
    "mapgroups"
    {
        "mg_bomb"
        {
            "name"            "mg_bomb"
            "maps"
            {
                "de_dust2" ""
                "de_nuke"  ""
                "de_aztec" "" 
                "cs_office" ""
                "de_train" ""
                "de_inferno" ""
                "de_dust" ""
            }
        }
    }
}
Windows server.

Thanks for any help.

EDIT: Sorry move to Server discussion (SRCDS)

Last edited by ltgenkd; 08-17-2012 at 22:13. Reason: move topic
ltgenkd is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 08-17-2012 , 22:15   Re: [CS:GO] Server connection issues
Reply With Quote #2

Since mg_bomb is already a defined mapgroup in gamemodes.txt, no need to redefine (and possibly break it) in your gamemodes_server.txt

Code:
"GameModes_Server.txt"
{
    "gameTypes"
    {
        "classic"
        {
            "gameModes"
            {
                "casual"
                {
                    "convars"
                    {
                        "mp_friendlyfire"    "0"
                        "mp_maxrounds" "3"
                        "mp_timelimit" "25"
                        "mp_roundtime" "30"
                    }
                }
            }    
        }
    }
}
__________________
View my Plugins | Donate

Last edited by TnTSCS; 08-17-2012 at 22:16.
TnTSCS is offline
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-17-2012 , 22:25   Re: [CS:GO] Server connection issues
Reply With Quote #3

No luck, removed GameModes_Server.txt.
Same thing happening.
ltgenkd is offline
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-17-2012 , 22:37   Re: [CS:GO] Server connection issues
Reply With Quote #4

Removed the addons folder, still getting same in console.
But watching the srcds console, 2 players joined, then I was able to join.
Weird shit

Last edited by ltgenkd; 08-17-2012 at 22:48. Reason: edit
ltgenkd is offline
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-18-2012 , 07:14   Re: [CS:GO] Server connection issues
Reply With Quote #5

Seems as though I can't join my own server until other players join.
Put the addons folder back last night, no one join the server all night.
Tried to join again this morning and still can't join.
Atleast the bots are having fun in there.
ltgenkd is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 08-18-2012 , 11:32   Re: [CS:GO] Server connection issues
Reply With Quote #6

how are you trying to connect? via console or steam server browser? Is your server running on the same box as your client, or is it being hosted somewhere? Is it listed in valve's master server list? Check here: [/url]http://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr=<SERVER IP HERE>&format=xml
__________________
View my Plugins | Donate
TnTSCS is offline
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-18-2012 , 15:35   Re: [CS:GO] Server connection issues
Reply With Quote #7

Quote:
Originally Posted by TnTSCS View Post
how are you trying to connect? via console or steam server browser? Is your server running on the same box as your client, or is it being hosted somewhere? Is it listed in valve's master server list? Check here: [/url]http://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr=<SERVER IP HERE>&format=xml
I am trying to connect both ways (see OP). Yes it is listed on Valves's master list.

Quote:
Gameserver is on a different computer than the one trying to connect but same IP.
After trouble shooting some more today, I can only connect if there are other players in the server.

Thanks TnTSCS
ltgenkd is offline
4bdul
AlliedModders Donor
Join Date: Dec 2011
Location: United Kingdom
Old 08-19-2012 , 07:15   Re: [CS:GO] Server connection issues
Reply With Quote #8

A few things you can try (try one at a time), but FIRST make a backup of your gamemodes.txt; backup and remove GameModes_Server.txt

- Remove any references of these two cvars from your server.cfg, if either exist:
Quote:
sv_hibernate_when_empty
sv_hibernate_postgame_delay
- Replace your FTP gamemodes.txt with this content: http://tny.cz/56d16fad (this is default)
- Run a steam update (incase anything's corrupted)

If it still doesn't work, watch your server's console (not client) to see if server restarts when you recieve any of those errors you posted.

Last edited by 4bdul; 08-20-2012 at 10:13.
4bdul is offline
ltgenkd
AlliedModders Donor
Join Date: Sep 2008
Old 08-19-2012 , 14:25   Re: [CS:GO] Server connection issues
Reply With Quote #9

Thanks, trying it now.

This was just updated today.

https://developer.valvesoftware.com/...icated_Servers
ltgenkd is offline
Zander
Junior Member
Join Date: May 2012
Old 08-19-2012 , 22:03   Re: [CS:GO] Server connection issues
Reply With Quote #10

add -ip 0.0.0.0 to start up command line I was having issues with this for days.. and this finally fixed it
Zander is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:28.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode