2015/02/13

WildFly cartridge uses too many processes

If you need some application server for testing your small project, Openshift is good choice. You can use many cartridges like JBOSS AS, JBOSS WildFly, Tomcat,..

But if you do not want to pay, you can have only three small appliations. Biggest problem with these small free applications is that it has some restrictions. One restriction which can cause many problems, is MAX USER PROCESSES. It is set to 250 currently.

This can cause this Exception:
OutOfMemoryError: unable to create new native thread

Solution:
Stop application [gear stop]
Remove unnecessary modules from standalone.xml file. I removed these modules:
clustering, jdr, jarorb, messaging

Key point is to replace this file int following directories:
/wildfly/standalone/configuration
/wildfly/jboss_cfg_backup
/app-root/repo/.openshift/config
/wildfly/template/.openshift/config

Do not know which directory is correct one but if you replace it in all, it will be ok.
To be sure you can remove standalone_xml_history directory in /wildfly/standalone/configuration
Start application [gear start]
▼ Click here to say thanks ▼

2015/02/10

Openshift shows error message

I had some problems with Openshift. Everytime I opened Openshift login page, error message was shown:
We appear to be having technical difficulties

Solution:

Remove all cookies for redhat.com domain.
▼ Click here to say thanks ▼