Disable “WARNING: Parameters: Invalid chunk ignored.” messages in Tomcat log
To disable this message you need to modify logging properties file.
If you have logging.properties in your tomcat/conf folder then make changes there. Otherwise modify jre’s file.
If you have logging.properties in your tomcat/conf folder then make changes there. Otherwise modify jre’s file.
Add to the end of /usr/local/java/jre/lib/logging.properties this line:
org.apache.tomcat.util.http.Parameters.level = SEVERE
Restart tomcat.
The reason for this message is some problem with url’s parameters format, like && in the begining of parameters etc. It is harmless, tomcat will process parameters anyway.
Another nice feature to reduce amount of information in catalina.out file is to redirect system output from catalina.out to web application log. Add swallowOutput=”true” to the context like this:
[root@mytomcat]# more conf/Catalina/localhost/ROOT.xml
<Context docBase=”/demos/demo1″ privileged=”true” antiResourceLocking=”false” ntiJARLocking=”false” swallowOutput=”true”> </Context>
<Context docBase=”/demos/demo1″ privileged=”true” antiResourceLocking=”false” ntiJARLocking=”false” swallowOutput=”true”> </Context>
Connect kubernetes pod to a GCS bucket using JS
To connect from a Kubernetes pod to a Google Cloud Storage (GCS)…Easiest way to run an LLM locally on your Mac
I recently sought an efficient method for local experimentation with Language Model…EKS cluster using an existing VPC
The eksctl command line tool can create a cluster by either command-line options or…kubectl Unable to connect to the server
When working with Kubernetes if you are getting Unable to conntect to…