Can't run server software
3 replies [Last post]
supercolio
WoM Member
Members
WoM Member: 12070
WoM Coins: 0

Okay, so I can't start my own server and I don't know what to do! When I try to run start_server.bat , it says something about like: Java is not recongnized... can't run, press any key.

Any help?

Hey, this is what it says in finnish:
"Java ei tunnistettu sisäiseksi tai ulkoiseksi komennoksi, suoritettavaksi ohjelmaksi tai komennoksi.
Jatka painamalla mitä tahansa näppäintä..."

InvisiblePerson
WoM Member
Contributor
WoM Member: 446
WoM Coins: 18
Did you try redownloading

Did you try redownloading java?

supercolio
WoM Member
Members
WoM Member: 12070
WoM Coins: 0
Yeah

Yes I did, no use :(

mart3323
WoM Member
Members
WoM Member: 12579
WoM Coins: 0
I had that problem too, what

I had that problem too, what you need to do is
Open the run batch file with notepad
in the begginning it says "java"
Replace that with the path to java.exe
Oh... and save it

Example:
Original:
@echo off
java -Xms512M
-Xmx512M -cp minecraft-server.jar
com.mojang.minecraft.server.MinecraftServer
pause

New and working:
@echo off
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms512M -Xmx512M -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer
pause