Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Set up a Minecraft server' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Set up a Minecraft server
Authored by: SOX on Sep 11, '13 09:51:22AM

The hint posting garbled my code segments. here's a cleaned up version

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>net.minecraft</string>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>/opt/minecraft</string>

<key>UserName</key>
<string>nobody</string>

<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-Xmx1024M</string>
<string>-Xms1024M</string>
<string>-jar</string>
<string>/opt/minecraft_server.1.6.2.jar</string>
<string>nogui</string>
</array>

</dict>
</plist>



[ Reply to This | # ]