Friday, 29 April 2016

Most usefull links

INSTALL SSL:

1. https://developer.jboss.org/wiki/SSLSetup
2.http://httpd.apache.org/docs/2.0/ssl/ssl_howto.html
3.https://www.sslshopper.com/ibm-http-server-ssl-installation-instructions.html
4.https://www.sslshopper.com/apache-server-ssl-installation-instructions.html
5.https://www.sslshopper.com/bea-weblogic-server-ssl-installation-instructions.html
6.https://www.sslshopper.com/tomcat-ssl-installation-instructions.html

JAVA HEAP MANAGEMENT:

1. http://javarevisited.blogspot.in/2011/05/java-heap-space-memory-size-jvm.html
2.http://javarevisited.blogspot.in/2011/04/garbage-collection-in-java.html
3.http://javarevisited.blogspot.in/2011/11/hotspot-jvm-options-java-examples.html
4.http://www.cubrid.org/blog/dev-platform/how-to-monitor-java-garbage-collection/

Tuesday, 5 April 2016

Rewind points in Apache Web Server

1. Apache Webserver hit count script
#!/bin/bash

cd <path to apache logs..>

i=`date +%d/%b/%Y`
j=`cat apache-access.log | grep “$i” | grep “GET / HTTP/1.1” | wc -l`

echo “No. of Apache Access Count:$j”

2. Monitor Apache Web Server Load and Page Statistics
http://www.tecmint.com/monitor-apache-web-server-load-and-page-statistics/
3.Apache Virtual Host
http://www.tecmint.com/apache-ip-based-and-name-based-virtual-hosting/