Clear all websphere portal dynacache (distributedmap) with one click

http://www-10.lotus.com/ldd/portalwiki.nsf/dx/Clear_all_websphere_portal_dyna_caches_lprdistributedmaprpr_with_one_click Sample code to inject in cachemonitor We can clear all caches with single click by injecting the below small piece of code into the Cache Monitor JSP (WebSphere\wp_profile\installedApps\sivapcCell\Dynamic Cache Monitor.ear\CacheMonitor.war\selectInstance.jsp)   <form name=”clearAll” method=”get” action=”selectInstance.jsp”> <input type=”hidden” name=”clearAll” value=”true”>  <input type=”submit” value=”Clear All” class=”buttons”>  </form> <%  if (request.getParameter(“clearAll”) != null   && request.getParameter(“clearAll”).equals(“true”)) {…

Jython script to create cluster with member WAS8.5

http://www-01.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/rxml_7libcluster.html?cp=SSAW57_8.5.5%2F1-18-3-57 AdminClusterManagement.createClusterMember(clusterName, nodeName, newMemberName) AdminClusterManagement.createFirstClusterMemberWithTemplate(clusterName, nodeName, newMemberName, templateName)