How exactly do I stop my server?

Discussion in 'Bukkit Help' started by CarloNord, Apr 28, 2012.

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

    CarloNord

    I've just got my server running and I'm trying to install plugins, problem being that I can't because I need to be able to restart and stop the server, help?

    EDIT: I should've probably done this earlier... It says there's an error. An unsatisfiedlinkerror...

    182 recipes
    27 achievements
    java.lang.UnsatisfiedLinkError: C:\Users\Liam\AppData\Local\Temp\jline_git-Bukki
    t-1_2_5-R1_0-b2149jnks.dll: Can't load AMD 64-bit .dll on a IA 32-bit platform
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at jline.WindowsTerminal.loadLibrary(WindowsTerminal.java:315)
    at jline.WindowsTerminal.initializeTerminal(WindowsTerminal.java:240)
    at jline.Terminal.setupTerminal(Terminal.java:75)
    at jline.Terminal.getTerminal(Terminal.java:26)
    at jline.ConsoleReader.<init>(ConsoleReader.java:191)
    at jline.ConsoleReader.<init>(ConsoleReader.java:186)
    at net.minecraft.server.MinecraftServer.<init>(MinecraftServer.java:94)
    at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:608)
    at org.bukkit.craftbukkit.Main.main(Main.java:134)
    Press any key to continue . . .
     
  2. Offline

    mindless728

    type "stop" into the console or use /stop in game as op (or having permission)
     
  3. Offline

    CarloNord

    I cant access the console, it only says: press any key to continue... I don't even have access to being OP as I cant reset the server to give it to myself!
     
  4. Offline

    russjr08

    How are you starting bukkit and what OS are you using?
     
  5. Offline

    CarloNord

    I have no idea how I started the server... I simply clicked on the .bat file, it said there was something wrong with the memory heaps, I fixed it, now this is happening. I didn't test but I'm sure the server only started after I fixed the heap issue. My OS is Windows 7, 64 bit.
     
  6. Offline

    russjr08

    Can you please post the bat file in code tags? (to open it right click the bat file and then click Edit)
     
  7. Offline

    CarloNord

    Echo OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xmx1024M -Xms512M -jar craftbukkit-1.2.5-R1.0.jar
    PAUSE
     
  8. Offline

    russjr08

    Try using this.

    @Echo OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Djline.terminal=jline.UnsupportedTerminal -Xmx1024M -Xms512M -jar craftbukkit-1.2.5-R1.0.jar
    PAUSE
     
  9. Offline

    CarloNord

    Ah, that works perfectly! Thanks man!
     
  10. Offline

    russjr08

    No problem!
     
Thread Status:
Not open for further replies.

Share This Page