I want to find a plugin/serivce installer for Minecraft and I'll need to find an init script so I can close this ssh session and not lose the server. I'm using the official server hardware.
Any help would be nice.
Well that won't work. I already had nohup. That will die on reboot.
An init script would be extremely helpful. :)
Thank you for your reply.
I will try writing an init script for you, if I find the time to. As of now, nohup will still work - just not when you restart your server.
If it isn't any bother of course! I'd be really appreciative if you do!
I'm surprised this doesn't exist anyway!
Thank you for your generous help Jon!
Just updating saying that I'm still interested if you've made any progress Jon
Still busy - I might have time tonight.
Thank you for your prompt response! Just whenever you find time. Just letting you know I'm still here and didn't wander off to something else.
WoM Coins: 20
Turning the server on:
nohup java -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer
Turning the server off:
ps aux
Now find the process like the one below:
root 4341 ... java -cp minecraft-server.jar com.mojang.minecraft.server.Minecraf...
Then do:
kill 4341
Where 4341 is the bold number from the process.