java.lang.IllegalStateException: Form too large 218722>200000 at org.eclipse.jetty.server.Request.extractParameters(Request.java:256)
To avoid this error, just create a configuration file for hudson in the contexts folder of jetty:
<Configure class="org.eclipse.jetty.webapp.WebAppContext"> <Set name="contextPath">/hudson</Set> <Set name="war"><Systemproperty name="jetty.home" default="."/>/webapps/hudson.war</Set> <Set name="maxFormContentSize" type="int">600000</Set> </Configure>