Author: RISHIVANT Singh

How to enable Terracotta clustering in WebMethod Integration Server.

Reading Time: 3 minutes What is Terracotta in WebMethods ? In order to cluster more than one integration server , terracotta clustering is used. Terracotta has two components the first is Terracotta Server Array and the local Ehcache library. These components help in in-memory caching and clustering. The TSA is installed when there are more than one server and they need to be clustered. So clustering in WebMethod IS Continue Reading

silver and black laptop computer

How to use cloud services locally – Localstack.

Reading Time: 3 minutes What is Localstack ? Localstack is a fully functional local cloud stack.It helps to develop and test the cloud and servless apps locally. LocalStack is a mirror of cloud services.Secondly , The only difference is that you run this on your local.It is a mocking framework for developing cloud applications.Thirdly , It serves us an environment that provides the same functionality as that of cloud Continue Reading

grayscale photo of computer laptop near white notebook and ceramic mug on table

Webmethod and its integration with server

Reading Time: 4 minutes What are webMethods ? Webmethod is an integration suite. It makes integration between two heterogeneous system simple and fast. Also has many different runtime component and various Development tool. It behaves like a middle ware .It provides a good UI tool to analyze and produce the flow service. The integrations in webmethods is totally in flow language. Advantages of webmethods : Firstly It gives a Continue Reading

How to provision S3 bucket using Pulumi

Reading Time: 5 minutes In this article we will witness as how we can provision infrastructure using Pulumi YAML extension. What is Pulumi ? Pulumi is an infrastructure as a code tool that enables IT administrator to write infra maps in higher level programming language such as Javascript . Go , Python etc. The tool can be integrated into a CI/CD platform using the CLI which talks to the Continue Reading

How to do Performance testing of Linux machines – Sysbench

Reading Time: 3 minutes Amazon Web Service provides on-demand cloud infrastructure on pay model. The AWS has many services that have made this IT world a flexible and complexity solving place . One of this is AWS. A very well known service is EC2 . To all those reading this blog probably know about EC2. It stands for Elastic compute cloud.These are basically virtual compute platforms with all the Continue Reading

infracost

How to do cost estimation of infra using Infracost

Reading Time: 5 minutes Cloud computing has made it really easier to grow and scale up infrastructure. The infrastructure setup has made it really easier to work with microservices but what about the cost. The elasticity and flexibility has made the life easier. But it comes at a cost which we cant ignore.Cloud infrastructure has a cost which shows at the end of usage. Most of the time, infrastructure Continue Reading

aws

Stack deployment using cdk and cloud formation template.

Reading Time: 5 minutes Whenever we need a cloud based deployment with handful of resources we go for manual deployment. But what if the resources needed are large enough to be deployed manually ? In this case we consider programmatically deployment using cdk. As the complexity of the system increases , the needed infrastructure also grows , so managing it manually becomes little tough. So today we will witness Continue Reading

kubernetes

How to create Kubernetes cluster with Kind

Reading Time: 3 minutes What is kind ? Kind is a tool for running kubernetes cluster locally using Docker container as nodes.This is best when you do local development. In this blog we will explore Kubernetes with Kind. Prerequisite Docker to be installed on the system How to install Kind on your system ? To install kind on your system follow the below steps First run the below step Continue Reading

How to work with RabbitMQ Server on Ubuntu .

Reading Time: 4 minutes What is RabbitMQ ? RabbitMQ is an opensource message broker.It is used widely and is lightweight , easy to deploy in environments. In simple words it acts as a middleman for various services. Lets consider an example that there is a application which inputs user data from users. Now to do such task for thousand request the application will take time. So RabbitMQ acts as Continue Reading

How to setup gcloud CLI on your machine.

Reading Time: 2 minutes What is gcloud cli ? Well if you want to interact with your google cloud platform using your terminal then your are at the right place. In this article ill let you know how to setup gcloud CLI to interact with GCP. To do this you need to setup the google cloud SDK on your workstation. A gcloud CLI helps to access the GCP with Continue Reading

How to setup JFrog artifactory on your system.

Reading Time: 2 minutes What is JFrog artifactory ? JFrog Artifactory is the only universal repository manager that supports all major packaging formats , build tools and CI servers. This can be used as an artifactory that is used to store artifacts.It is available in different forms. It’s open source , enterprise level etc. It supports pkg managers of any languages . It supports high availability that helps to Continue Reading

black and gray laptop computer turned on doing computer codes

How to deploy a docker image using Nginx and save it to Amazon ECR.

Reading Time: 4 minutes We all know a docker image is a read only template that contains a set of instruction for creating a container that runs on docker platform.So today we we will see how to deploy image using Nginx and further would push it to the Amazon ECR. Prerequisite :- A Docker account AWS account Brief knowledge about Nginx 1- Lets create the nginx container The first Continue Reading

close up photo of programming of codes

How to use packer to build AMI.

Reading Time: 3 minutes What is packer ? Packer is a open source tool that is used for making machine images (ami) from source configuration.Packer has made it really easy to automate the process of provisioning instance without manual configuration. Why Packer ? It is so because it supports cross platform. We can build multiple machine images from a single source file. To achieve this Packer uses JSON template Continue Reading