More problems with my bukkit server...

Discussion in 'Bukkit Help' started by TheWilsonChannel, Mar 2, 2012.

Thread Status:
Not open for further replies.
  1. Hello everyone, I'm wanted to update my server to 1.2, bukkit didn't worked, soo I used MinecraftServer.jar (1.2.3), worked, play some maps... then we coludn't change the map, closed, and open, closed and open, soo... we couldn't get IN the server. Then I tried again with a newer version of bukkit 1.2.3, but, it says: "Unable to access jarfile craftbukkit-1.2.3-R0.1-20120302.201515-7
    Presione una tecla para continuar . . ."
    Help me, AGAIN!!!!!
     
  2. Offline

    Cicadia

    Check your batch file that you're running the server with, and double check that the "-jar FILENAME.jar" matches what you desire to run in that same directory.

    Good luck!
     
  3. Ahmmm... It didn't worked..
     
  4. Offline

    Cicadia

    Well, what does your ".bat" file contain?

    Note: I just updated my plugin test server to 1.1-R6 and thought I had the same issue until I renamed the JAR file that I downloaded
     
  5. It says:
    Echo OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    java -Xmx1024M -Xms1024M -jar craftbukkit-1.2.3-R0.1-2
    PAUSE
     
  6. Offline

    Cicadia

    You're missing the ".jar" extension in the batch file. Try using this:

    @Echo OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    java -Xmx1024M -Xms1024M -jar craftbukkit-1.2.3-R0.1-2.jar
    PAUSE

    And adding -Xincgc to the "java" command, at the end, may (actually it probably will) decrease memory consumption on your machine. 1GB (1024M) can be limiting for Bukkit sometimes.
     
  7. THANKS DUDE!
     
  8. Offline

    itorrent

    Your welcome ;)
     
Thread Status:
Not open for further replies.

Share This Page