Sunday 7 June 2015

WSSE Header Generator

Below is a link to generate WSSE header. You need to provide the username and password and it will generate the password digest for you. I would also like to appreciate the one who developed the below.

http://www.teria.com/~koseki/tools/wssegen/


Friday 5 June 2015

Useful Mysql commands

GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.83';

Size of mysql DB

SELECT table_schema "Data Base Name", SUM( data_length + index_length) / 1024 / 1024
"Data Base Size in MB" FROM information_schema.TABLES GROUP BY table_schema ;


MySql DB Dump

Dump for whole DB
mysqldump  --single-transaction -h[hostname] -u[username] -p[password] [dbname] > uat_mysql_dump_25Nov

Dump data from one query based on some condition:
mysqldump  --single-transaction --extended-insert=FALSE  -h[hostname]  -u[username] -p[password] [dbname]  [tablename] --where="[columnname1]=8000 and [columnname2]=18000"


Increasing Memory for Mysql DB
mysqld --innodb_buffer_pool_size=500M


Setting TimeZone
SELECT @@global.time_zone;
SET GLOBAL time_zone = '+00:00';
SET time_zone = "+00:00";

SHOW GLOBAL VARIABLES WHERE variable_name LIKE '%buffer%'

Maven Commands

Below are some of the useful maven commands to compile your code


mvn clean install ---> clean and install

mvn clean compile --> clean and compile

mvn clean -o install --> clean and install offline. this can be sued if you are unable to connect to download dependency

mvn clean install -Dcheckstyle.skip=true -Dmaven.test.skip=true -Dcobertura.skip=true


skip a single test
 mvn -Dtest='\*,!NCB*' clean test -DfailIfNoTests=false