- What OS are you running? - CentOS 6.5 (Final)
- Are you using minecraft hosting provider or a dedicated/local server not designed for minecraft? - Dedicated server not designed for Minecraft (http://www.hetzner.de/en/hosting/produkte_rootserver/ex40ssd)
- What version of FTB are you using? (Dont just say latest tell us the version) - Horizons V1.0.6
- Did you add any mods to the server pack? - Nope
- What are your server specs?
- 32Gb RAM
- Dual 240Gb SSD in Raid-1 Configuration
- A good detailed paragraph about the problem
Code:
#/bin/sh
while true
do
java -Xms30G -Xmx30G -Xmn7680m -XX:TargetSurvivorRatio=80 -XX:MaxTenuringThreshold=31 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:MaxGCPauseMillis=40 -XX:GCPauseIntervalMillis=150 -XX:+AggressiveOpts -XX:PermSize=1024m -XX:+TieredCompilation -XX:ReservedCodeCacheSize=2048m -XX:+UseCodeCacheFlushing -XX:CompileThreshold=1000 -jar ftbserver.jar nogui
echo Its off..restarting
sleep 1
done
I then tried installing mono onto the machine using these instructions:
Code:
$yum install bison gettext glib2 freetype fontconfig libpng libpng-devel libX11 libX11-devel glib2-devel libgdi* libexif glibc-devel urw-fonts java unzip gcc gcc-c++ automake autoconf libtool make bzip2 wget
$cd /usr/local/src
$wget http://download.mono-project.com/sources/mono/mono-3.0.1.tar.bz2
$tar jxf mono-3.0.1.tar.bz2
$cd mono-3.0.1
$./configure --prefix=/opt/mono
$make && make install
Code:
Can't start up: not enough memory
Its off..restarting
I then tried uninstalling mono by using
Code:
make uninstall
/usr/local/src/mono-3.0.1/
That seems to have uninstalled it however the server will still not start. Any help is much appreciated