The same thing happened to me as well. I seen a post here somewhere that said it was caused by too many plugins. The post suggested adding "-XX:MaxPermSize=128m" to a batch file used to start the server. It fixed it for me.
My entire batch file looks like this:
Code:
java -d64 -server -XX:CompileThreshold=3000 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:MaxHeapFreeRatio=20 -XX:MinHeapFreeRatio=12 -XX:MaxPermSize=128m -Xms512m -Xmx1024m -XX:NewSize=100m -XX:SurvivorRatio=6 -XX:MaxTenuringThreshold=4 -XX:+PrintHeapAtGC -XX:+PrintTenuringDistribution -XX:+PrintCommandLineFlags -XX:+PrintGCDetails -Xloggc:GC.log -XX:parallelGCThreads=2 -jar mcpc-plus-legacy-1.4.7-R1.1-SNAPSHOT-f534-L7.jar nogui
A lot of that comes from suggestions from XCompWiz (Mystcraft), that helps the server handle ages better.