Pages

Monday, May 5, 2014

How to update heap size in tomcat 7

Step 1: Open up the catalina.sh file with any text editor.

Step 2: Search for "JAVA_OPTS=" in the file and in particular locate the following lines of code:


if [ -z "$LOGGING_MANAGER" ]; then
JAVA_OPTS="$JAVA_OPTS -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager"
else 
JAVA_OPTS="$JAVA_OPTS $LOGGING_MANAGER"
fi


Step 3: At the end of the JAVA_OPTS definitions add "-Xms256m -Xmx512m".


if [ -z "$LOGGING_MANAGER" ]; then
JAVA_OPTS="$JAVA_OPTS -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Xms256m -Xmx512m"
else 
JAVA_OPTS="$JAVA_OPTS $LOGGING_MANAGER -Xms256m -Xmx512m"
fi


Step 4: Save the file and restart Tomcat.

Friday, April 25, 2014

Skype APK : custom notification sound

Hi,

I noticed that the latest skype on android devices lacks some features. As set custom notification sound for incoming IM's. You can use the given link to download the modified skype apk in which we can set custom notification tones.

http://www7.zippyshare.com/d/57399210/155042/Skype_4.7.0.43514_v22.apk