Sometimes when we writing jmeter scripts , we need to share variables between threads groups in a test plan. Easiest way to achieve this is use "bsh.shared" shared namespace.
Test Plan
Thread Group1
Thread Group2
Assume that you have a test scenario to pass the session of the ...
Friday, June 23, 2017
Monday, August 22, 2016
How to Delete Network Interface using command line.
Using below steps you can remove unwanted network interfaces
1. Running the ifconfig command without any arguments, it
will display information about all network interfaces currently in
operation.
ifconfig
br-3b6bfc3c75d3 Link encap:Ethernet HWaddr 02:42:c2:fd:af:40
inet addr:172.18.0.1 Bcast:0.0.0.0 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0...
Friday, August 19, 2016
Increasing the number of process and sessions in Oracle 12C.
This post explains how to increase the number of process and
sessions in Oracle 12C.
1. Log in to the database as system administrator
sqlplus / as sysdba
2. Check existing values for sessions and processes.
show parameter sessions;
show parameter processes;
3. Set the number of processes to you need to increase
alter system set processes=<no_processes> scope=spfile;...
Saturday, November 7, 2015
How to configure WSO2 DAS Fully Distributed Setup. (Cluster setup)

This blog post describes how to configure WSO2 DAS Fully Distributed Setup. (Cluster setup)
WSO2 Data Analytics Server 3.0.0 combines real-time, batch, interactive, and predictive (via machine learning) analysis of data into one integrated platform to support the multiple demands of Internet of Things...
Thursday, November 5, 2015
How to use ZAP tool to run a Security Vulnerability Test

The ZAP (OWASP Zed Attack Proxy ) is an integrated penetration testing tool for finding vulnerabilities in web applications. A significant part of ZAP is active scanning for known vulnerabilities, like SQL injection etc. For more details https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project
Installation
...