[Warning] Can't keep up....

Discussion in 'Bukkit Help' started by juiceboxfriends, Apr 21, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    juiceboxfriends

    Ok, so I'm running my server off 3 gigs of RAM and NOBODY is on it and it keeps saying "Warning cant keep up, did the system time change or is the server overloaded?" Why does it do this? Nobody can connect because of this.

    Ask for more information if needed.
     
  2. Offline

    xXStonedBirdXx

    I had the same problem...my friend told me to delete some plugins and after that i never saw these warnings again
     
  3. Offline

    juiceboxfriends

    That might just work. Let's find out.

    No I removed my entire plugins folder and it still does it.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 25, 2016
  4. Offline

    xXStonedBirdXx

    how many plugins does your server have

    Brutal-MC_de.png
     
  5. Offline

    juiceboxfriends

  6. Offline

    Mayney

    RAM isnt the only measure of power.... whats your OS and CPU?
     
  7. Offline

    juiceboxfriends

    OS is Windows 7 home premium 64 bit. CPU is 1.73 GHz intel i7 core

    And also it just started doing this recently. I've had 20 people on the server with no lag.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 25, 2016
  8. Offline

    xXStonedBirdXx

    Ok maybe you need more RAM or just ignore it
    Brutal-MC_de.png
     
  9. Offline

    juiceboxfriends

    Can't ignore it. People can't connect when it does this.
     
  10. Offline

    xXStonedBirdXx

    Im just ignoreing it sometimes xD
    Brutal-MC_de.png

    Oh they realy cant connect
    ??

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 25, 2016
  11. Offline

    juiceboxfriends

    Yes correct nobody can.
     
  12. Offline

    Mayney

    What version of bukkit are you using? Have you tired updating it? Maybe try a RB not a DEV build.
     
  13. Offline

    juiceboxfriends

    As far as I know its 1.2.5
     
  14. Offline

    Mayney

    There are many builds for bukkit on 1.2.5, do to http://dl.bukkit.org/ and download the recommended build.
     
  15. Offline

    juiceboxfriends

    Same build I'm using now.
     
  16. Offline

    Mayney

    Try disabling all your plugins, and slowly re-enabling them. That might help you find if one is glitching.

    Also watch out if you are using a lot of other programs on windows.
     
  17. Offline

    juiceboxfriends

    Did that already. The only windows open are the server. Plugins don't matter. I truly don't understand.
     
  18. Offline

    LHammonds

    What version of Java are you using? Is it the 32-bit or 64-bit version?

    You might want to post what your start batch file looks like.

    Here is my custom batch script which works on any Windows PC I run it from (either Java 1.6 or 1.7)

    start.bat (open)

    Code:
    [USER=48566]Echo[/USER] OFF
    SET RAM2USE=2048
    CD /D E:\Bukkit
     
    REM ** Look for a version of Java 7 that matches the OS (32-bit for 32-bit, 64-bit for 64-bit) **
    IF EXIST "%ProgramFiles%\Java\jre7\bin\java.exe" GOTO JAVA7DEFAULT
     
    REM ** Look for 32-bit version of Java 7 on 64-bit OS **
    IF EXIST "%ProgramFiles(x86)%\Java\jre7\bin\java.exe" GOTO JAVA732BIT
     
    REM ** Look for a version of Java 6 that matches the OS (32-bit for 32-bit, 64-bit for 64-bit) **
    IF EXIST "%ProgramFiles%\Java\jre6\bin\java.exe" GOTO JAVA6DEFAULT
     
    REM ** Look for 32-bit version of Java 6 on 64-bit OS **
    IF EXIST "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" GOTO JAVA632BIT
     
    :JAVA7DEFAULT
    REM ** This will execute if run on a 32-bit OS with a 32-bit version of Java 7 **
    REM ** This will execute if run on a 64-bit OS with a 64-bit version of Java 7 **
    "%ProgramFiles%\Java\jre7\bin\java.exe" -Xmx%RAM2USE%M -Xms%RAM2USE%M -jar craftbukkit.jar
    GOTO DONE
     
    :JAVA732BIT
    REM ** This will execute if run on a 64-bit OS with only a 32-bit version of Java 7 **
    "%ProgramFiles(x86)%\Java\jre7\bin\java.exe" -Xmx%RAM2USE%M -Xms%RAM2USE%M -jar craftbukkit.jar
    GOTO DONE
     
    :JAVA6DEFAULT
    REM ** This will execute if run on a 32-bit OS with a 32-bit version of Java 6 **
    REM ** This will execute if run on a 64-bit OS with a 64-bit version of Java 6 **
    "%ProgramFiles%\Java\jre6\bin\java.exe" -Xmx%RAM2USE%M -Xms%RAM2USE%M -jar craftbukkit.jar
    GOTO DONE
     
    :JAVA632BIT
    REM ** This will execute if run on a 64-bit OS with only a 32-bit version of Java 6 **
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xmx%RAM2USE%M -Xms%RAM2USE%M -jar craftbukkit.jar
    GOTO DONE
     
    :DONE
    REM ** This will pause the screen so you can see any error messages after stopping the CraftBukkit server. **
    PAUSE
    
     
  19. Offline

    juiceboxfriends

    I have both 32 and 64. I use 64. I tried that batch and it still had the message. I've done everything. I've even redownloaded bukkit.
     
  20. Offline

    LHammonds

    What version of Java?

    I have Java 1.7.0_01 on my Windows 7 PC.

    I use Java 1.6 update 31 on my Linux Server.
     
Thread Status:
Not open for further replies.

Share This Page