Server for GouGou.
#Starting server
##Windows
- As a prerequisite, install Java 7 or above if you don't have it already (from Java.com).
- Download the latest build
- Place the file in a new directory dedicated to GouGouServer.
- Create a new startup script (start.bat) to launch the the JAR:
@echo off
java -Xms512M -Xmx1536M -XX:MaxPermSize=128M -jar GouGouServer.jar
pause
- Double click the batch file.
##Linux
- As a prerequisite, install Java 7 or above if you don't have it already [Ubuntu https://help.ubuntu.com/community/Java, CentOS https://stackoverflow.com/a/20901970].
- Download the latest build
- Place the file in a new directory dedicated to GouGouServer.
- Create a new startup script (start.sh) to launch the the JAR:
#!/bin/sh
java -Xms512M -Xmx1536M -XX:MaxPermSize=128M -jar GouGouServer.jar
- Run your start up script:
chmod +x start.sh
./start.sh