1. Welcome to LilyPad. Download the project, explore the forums, and create your own LilyPad network.


    If you use the software and enjoy it or have a question, or would like to contribute to the future of the software directly or through resources, please sign up and join our little community.

The requested server is currently offline.

Discussion in 'Support' started by boss86741, Oct 28, 2013.

  1. boss86741

    boss86741 New Member

    I come from the far away land of BungeeCord. I keep getting kicked with this message when I join. Yes, I have bukkit-connect, and yes, I checked other threads.

    My config:
    Code (text):
    {
      "proxy": {
        "bind": {
          "address": "0.0.0.0",
          "port": 25565
        },
        "outbound": {
          "address": "0.0.0.0"
        },
        "servers": [
          {
            "domain": "mc.thebossserver.com",
            "server": "hub"
          }
        ],
        "motd": "\u0026a\u0026k!\u00266\u0026ki\u0026a\u0026k!\u00264\u0026lThe Boss \u0026oHub\u0026a\u0026k!\u00266\u0026ki\u0026a\u0026k!                                \u00262\u0026l\u0026owww.thebossserver.com",
        "playerMaximum": 800,
        "authenticate": true,
        "throttle": 2500,
        "tabEnabled": true,
        "localeFull": "You seem to be already logged in",
        "localeOffline": "The requested server is currently offline. Try again later!",
        "localeLoggedIn": "You have logged in from another location",
        "localeLostConn": "Lost connection... Please try to reconnect",
        "localeShutdown": "The server is being restarted. Please try to reconnect"
      },
      "queryTcp": {
        "bind": {
          "address": "0.0.0.0",
          "port": 5555
        }
      },
      "queryUdp": {
        "bind": {
          "address": "0.0.0.0",
          "port": 25565
        }
      },
      "connect": {
        "bind": {
          "address": "0.0.0.0",
          "port": 5091
        },
        "logins": [
          {
            "username": "hub",
            "password": "[CHANGED FROM REAL ONE]"
          },
          {
            "username": "survival",
            "password": "[CHANGED FROM REAL ONE]"
          }
        ]
      }
    }
    I also tried making all of the address options the server's IP and I tried 127.0.0.1.

    My Bukkit-connect configs for hub and survival:
    Code (text):
    settings:
      address: 0.0.0.0
      port: 5091
      credentials:
        username: hub
        password: [CHANGED FROM REAL ONE]
    Code (text):
    settings:
      address: 0.0.0.0
      port: 5091
      credentials:
        username: survival
        password: [CHANGED FROM REAL ONE]
    I also tried changing IPs in here. Didn't work.
  2. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Change it to:
    Code (text):
    {
      "proxy": {
        "bind": {
          "address": "0.0.0.0",
          "port": 25565
        },
        "outbound": {
          "address": "0.0.0.0"
        },
        "servers": [
          {
            "domain": "*",
            "server": "hub"
          }
        ],
        "motd": "\u0026a\u0026k!\u00266\u0026ki\u0026a\u0026k!\u00264\u0026lThe Boss \u0026oHub\u0026a\u0026k!\u00266\u0026ki\u0026a\u0026k!                                \u00262\u0026l\u0026owww.thebossserver.com",
        "playerMaximum": 800,
        "authenticate": true,
        "throttle": 2500,
        "tabEnabled": true,
        "localeFull": "You seem to be already logged in",
        "localeOffline": "The requested server is currently offline. Try again later!",
        "localeLoggedIn": "You have logged in from another location",
        "localeLostConn": "Lost connection... Please try to reconnect",
        "localeShutdown": "The server is being restarted. Please try to reconnect"
      },
      "queryTcp": {
        "bind": {
          "address": "0.0.0.0",
          "port": 5555
        }
      },
      "queryUdp": {
        "bind": {
          "address": "0.0.0.0",
          "port": 25565
        }
      },
      "connect": {
        "bind": {
          "address": "0.0.0.0",
          "port": 5091
        },
        "logins": [
          {
            "username": "hub",
            "password": "[CHANGED FROM REAL ONE]"
          },
          {
            "username": "survival",
            "password": "[CHANGED FROM REAL ONE]"
          }
        ]
      }
    }
    This
    Code (text):
    "servers": [
          {
            "domain": "mc.thebossserver.com",
            "server": "hub"
          }
    Has to be:
    Code (text):
    "servers": [
          {
            "domain": "*",
            "server": "hub"
          }
    • Like Like x 1
  3. boss86741

    boss86741 New Member

    I tried this and there is still this same problem. Plus, in the console of the servers, I get:
    [INFO] [Connect] Connection timed out while keying, retrying

    I tried changing lilypad-connect's IP to mc.thebossserver.com to see if that worked and same error.
  4. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Do you use the latest version of everything?
  5. boss86741

    boss86741 New Member

    Yes.
  6. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Try to change this:
    Code (text):
    settings:
      address: 0.0.0.0
      port: 5091
      credentials:
        username: hub
        password: [CHANGED FROM REAL ONE]
    To
    Code (text):
    settings:
      address: 127.0.0.1
      port: 5091
      credentials:
        username: hub
        password: [CHANGED FROM REAL ONE]
  7. boss86741

    boss86741 New Member

    Still ain't working . I h8 networking. Always had bad experiences with it. lol
  8. Coelho

    Coelho Software Engineer Staff Member Administrator Maintainer

    Basically:

    We have your LilyPad server, and your LilyPad Bukkit server. Your LilyPad Bukkit server (Bukkit-Connect) connects to your LilyPad server (Server-Standalone-AllInOne).

    The IP and port in the Bukkit-Connect plugin would be that of your Server-Standalone-AllInOne. If it says Connected to cloud in your Bukkit server's console, you're good to go.
    • Informative Informative x 2

Share This Page