Minecraft – Running the CraftBukkit Server for minecraft

minecraft-bukkitminecraft-java-editionminecraft-java-edition-server

I recently download Craft Bukkit for running a multiplayer minecraft server, and according to tutorial I created a run.bat file in the note pad with following code to run the server

java -Xms1024M -Xmx1024M -jar craftbukkit.jar -o true
PAUSE

and according to tutorial's the server should start but insted of it the following error message appears
enter image description here

I dont know what is wrong cause the same thing happens with other server builds i try to run so please help me.

Best Answer

You have to rename the downloaded craftbukkit file from

craftbukkit-1.x.x-xx.x.jar

to

craftbukkit.jar

The .bat command expects a file called craftbukkit.jar, if it doesn't find it, you get that error.

Also check what @SevenSidedDie said.