Monday, August 31, 2015

In this Post I'll explain you how to send a GZIPed post body using CURL commands. Its pretty straight forward, noting down if anyone come accross a similar requirement. First you need to create the body you need to send, In my case I'm sending a XML content. So create a valid xml file, then zip the created file in gzip format, In ubuntu you can just right click on the file and compress it. After compressing the file will have a .gz extension. e.g...
In this post I'll explain how to monitor WSO2 products remotely using Jconsole. Jconsoles comes by default with Java in linux you can type Jconsole to start Jconsole. WSO2 Product Configurations Main JMX ports related configs are located at <Product_Home>/repository/conf/carbon.xml Open <CARBON_HOME>/repository/conf/carbon.xml and specify the ports if you need to change the default ports. Change the following section. <!--...

Friday, August 21, 2015

This post explain how to setup a WSO2 ESB cluster, here I will be using ESB 4.9, MySQL as the underline DB and NginX as the load balancer. Following diagram depicts the overall distribution of the cluster components. Following are the host names IPs of each node. NoNode NameHost NameIPLocal Member Port 1Manager mgt.esb.cl2.wso2.com  192.168.48.243  4001 2Worker 01esb.cl2.wso2.com192.168.48.2444001 3Worker 02esb.cl2.wso2.com192.168.48.2494001 Requisites. So...

Tuesday, August 11, 2015

In this post I'll explain you how to take a DB dump in Oracle with deprecated imp/exp and using oracle data pump. First lets create a user schema. create user yasaas identified by yasas; grant create session, grant any privilege to yasas; grant all privileges to yasas; Above commands will give most of the privileges to the user that are required for DB operations. But when exporting and importing the user needs...
Subscribe to RSS Feed Follow me on Twitter!