top of page
Search


Siddhesh Kadam
1 min read
Install Jenkins on CentOS Using Ansible
To install Jenkins on CentOS using Ansible, you can use the following playbook. Ensure you have Ansible installed and configured to...


Siddhesh Kadam
2 min read
Efficiently Downloading Files and Folders Recursively from an Amazon S3 Bucket
To download files from an Amazon S3 bucket recursively, you can use the AWS Command Line Interface (CLI) with the aws s3 cp command. The...


Siddhesh Kadam
3 min read
Linux "tee" Command
Linux offers a vast array of command-line utilities, each designed to perform specific tasks efficiently. One such versatile tool is the...


Siddhesh Kadam
2 min read
Ansible to Automate Server Reboot a Linux server
You can use Ansible to Automate Server Reboot a Linux server and wait for it to come back online. Here's a simple playbook to understand...


Siddhesh Kadam
2 min read
Mount AWS S3 Bucket On Linux
Amazon S3 (Simple Storage Service) is a scalable, highly durable, and cost-effective cloud storage solution. In many cases, you might...


Siddhesh Kadam
1 min read
Create an AWS EC2 instance with Ansible
To create an AWS EC2 instance with Ansible, you can use the ec2 module. Here's an example Ansible playbook that creates a t2.micro...


Siddhesh Kadam
4 min read
Ingest MySQL Data Into Elasticsearch Using Logstash
In some circumstances, we may need to parse MySQL data to other security compliance appliances such as SIEM or a database such as...


Siddhesh Kadam
4 min read
Monitor Linux Server Using Prometheus & Grafana
Monitoring a Linux server using Prometheus and Grafana is a powerful combination for tracking server metrics, visualizing them, and...


Siddhesh Kadam
2 min read
Amazon Elastic Block Store (EBS) Volume Types
Amazon Elastic Block Store (EBS) provides several types of volume types, each designed for different use cases and workloads. The main...


Siddhesh Kadam
2 min read
How to set up an EC2 security group
You can create a security group in Amazon EC2 using the AWS Management Console, AWS Command Line Interface (CLI), or an SDK like Boto3...


Siddhesh Kadam
2 min read
EC2 Instance Snapshot
Creating a snapshot of an Amazon Elastic Compute Cloud (EC2) instance in AWS is a common and important task for creating backups and...


Siddhesh Kadam
3 min read
How To Create AWS EC2 Instance (Centos)
Creating an EC2 instance of CentOS on Amazon Web Services (AWS) involves several steps. Here's a step-by-step guide to help you get...


Siddhesh Kadam
3 min read
AWS EC2
In the realm of cloud computing, Amazon Web Services (AWS) stands as a titan, offering a multitude of services designed to facilitate a...


Siddhesh Kadam
3 min read
Redis Cluster and Master-Slave Replication
Redis is an open-source, in-memory data store that can be used as a database, cache, or message broker. Redis supports various data...


Siddhesh Kadam
2 min read
Redis Benchmark
redis-benchmark is a command-line utility bundled with Redis. It is designed to measure the performance and throughput of a Redis server....


Siddhesh Kadam
2 min read
Redis Sorted Sets
A Redis sorted set is a data structure that combines set and sorted list features. It allows you to save a collection of unique items...


Siddhesh Kadam
2 min read
Redis Sets
Redis sets are collections of unique strings that are not sorted. They are implemented using a hash table, which allows for extremely...


Siddhesh Kadam
3 min read
Redis List
Redis lists are string-valued linked lists. They are sorted by insertion order and can be added or removed at the top or bottom of the...


Siddhesh Kadam
2 min read
Redis Hash
Hashes in Redis are a key-value data structure that stores a mapping of field names to values. Hashes are similar to Python dictionaries....


Siddhesh Kadam
3 min read
Redis String
A Redis string is a sequence of bytes. This means that it can store any type of data, including text, serialized objects, and binary...
bottom of page