Skip to content
hgomez edited this page Jan 24, 2013 · 9 revisions

The usual FAQ page

How could I change default listen ports in package ?

MyForge packages follow strictly FHS recommandation and service configuration is deployed under /etc/sysconfig.

A single file by service contains all config informations.

For example, MyForge Jenkins configuration file is /etc/sysconfig/myjenkins :

#
# MyApp Configuration
#
# Vars starting with APP_ are used to replace contents in skeletons files
#

APP_SERVER_PORT=12354
APP_HTTP_PORT=12355
APP_HTTPS_PORT=12356
APP_AJP_PORT=12357
APP_RMIREGISTRY_PORT=12358
APP_RMISERVER_PORT=12359
  • APP_SERVER_PORT is Apache Tomcat service port
  • APP_HTTP_PORT is HTTP port
  • APP_HTTPS_PORT is HTTPS port
  • APP_AJP_PORT is AJP (mod_jk) port
  • APP_AJP_PORT is AJP (mod_jk) port
  • APP_RMIREGISTRY_PORT and APP_RMISERVER_PORT are ports used by JMX

How could I change memory allocated to Java process ?

Java process parameters, like Ms/Mx are also defined in MyForge uniq configuration file :

For Jenkins, under /etc/sysconfig/myjenkins, you could see :

APP_JAVA_OPTS="-Xms256m -Xmx512m -XX:MaxPermSize=128m -XX:+UseCompressedOops -server"

Just update Xms, Xmx and restart service.

Clone this wiki locally