Search Unity

Master Server down ?

Discussion in 'Multiplayer' started by jonlab, Jan 13, 2016.

  1. jonlab

    jonlab

    Joined:
    Apr 6, 2010
    Posts:
    182
    Hi all,

    We are using the deprecated Network system in our app, with the Unity Master Server and facilitator.
    The server seems to be down, I never get the host list (it is not working anymore since yesterday).
    http://docs.unity3d.com/ScriptReference/MasterServer.html

    Code (CSharp):
    1. Failed to connect to master server at 67.225.180.24:23466
    Code (CSharp):
    1. void refreshHostList()
    2.     {
    3.         // let the user know we are awaiting results from the master server
    4.         loading = true;
    5.         MasterServer.ClearHostList();
    6.         MasterServer.RequestHostList( "NewAtlantis" );
    7.     }
    8.  
    9.  
    10.     // this is called when the Master Server reports an event to the client – for example, server registered successfully, host list received, etc
    11.     void OnMasterServerEvent( MasterServerEvent msevent )
    12.     {
    13.         LogManager.Log("MasterServer Event : " + msevent);
    14.         if( msevent == MasterServerEvent.HostListReceived )
    15.         {
    16.             // received the host list, no longer awaiting results
    17.             loading = false;
    18.         }
    19.         PlayEvent(1);
    20.     }
    Any news ?
     
  2. Sam-DreamsMaker

    Sam-DreamsMaker

    Joined:
    May 2, 2015
    Posts:
    13
    same problem for me
     
  3. Jamcount

    Jamcount

    Joined:
    Apr 20, 2014
    Posts:
    44
    "Failed to connect to master server at 67.225.180.24:23466"

    Same problem here.
     
  4. phasiclabs

    phasiclabs

    Joined:
    Nov 13, 2013
    Posts:
    126
    same here - it was happening for me yesterday too, so it's not a short-term glitch.
     
  5. FatmaGurel

    FatmaGurel

    Joined:
    Dec 1, 2014
    Posts:
    4
    Same here, any suggestions anyone?
     
  6. jonlab

    jonlab

    Joined:
    Apr 6, 2010
    Posts:
    182
    The Master server seems to be up again !!! :)
     
    FatmaGurel likes this.
  7. FatmaGurel

    FatmaGurel

    Joined:
    Dec 1, 2014
    Posts:
    4
    Yes thankfully it's up, but does anyone know how we can set our own server in version 4.x? After seeing this and reading that MasterServer is only a test server,if we are to launch a game what should we do?
     
  8. Jamcount

    Jamcount

    Joined:
    Apr 20, 2014
    Posts:
    44
    It is down again...
     
  9. FatmaGurel

    FatmaGurel

    Joined:
    Dec 1, 2014
    Posts:
    4
    Any suggestions on finding an alternative to Master Server?? I've looked at Photon, but it's free version supports only a few players as I've understood and it's not enough for our game. So if there's anyone who can suggest anything, we're really looking for an alternative.