top of page
Search
Siddhesh Kadam
6 min read
Linux Process Management
Linux process management involves various commands and utilities to control and monitor processes running on a Linux system. In this...
Siddhesh Kadam
1 min read
How to Create a User in MongoDB using db.createUser() Method
To create a user in MongoDB, you can use the db.createUser() method. Here is the basic syntax: test> use builddevops switched to db...
Siddhesh Kadam
2 min read
MongoDB Roles
MongoDB provides several built-in roles that you can assign to users to control their access to databases and operations. Here's an...
Siddhesh Kadam
3 min read
MongoDB Monitoring
MongoDB provides various commands and tools for monitoring the health and performance of your database. These commands help you gather...
Siddhesh Kadam
3 min read
MongoDB Backup & Restoration
MongoDB backup and restoration are crucial tasks for ensuring data integrity, disaster recovery, and system stability. MongoDB provides...
Siddhesh Kadam
2 min read
Why should you use the --memory argument in Docker container?
In Docker, you can use the --memory argument with the container run child command to define a hard memory restriction. After establishing...
Siddhesh Kadam
3 min read
Maximizing Your Docker Container CPU Efficiency: How to Set CPU Limits
Docker allows you to limit the CPU resources that a container can use. This is useful for preventing a single container from consuming...
Siddhesh Kadam
1 min read
Jenkins Backup Using ThinBackup
ThinBackup is a Jenkins plugin that allows you to perform backups of your Jenkins configuration and data. Here's a step-by-step guide on...
Siddhesh Kadam
1 min read
Create a Serverless JSON Page Using Lambda
AWS Lambda is a serverless compute service, and it doesn't directly serve JSON pages like a traditional web server. However, you can...
Siddhesh Kadam
2 min read
Nginx Load Balancer
Nginx is a well-known open-source web server and reverse proxy server that also serves as a load balancer. Setting up a Nginx load...
Siddhesh Kadam
2 min read
Monitor Nginx Status
Enabling the NGINX status page involves configuring NGINX to expose a special endpoint that provides information about the server's...
Siddhesh Kadam
1 min read
Docker Diff
The docker diff command is used to inspect changes on the filesystem of a container compared to its base image. It shows the differences...
Siddhesh Kadam
2 min read
Promote / Demote Node In Docker Swarm
In Docker Swarm, you can promote a worker node to a manager or demote a manager to a worker using the docker node promote and docker node...
Siddhesh Kadam
2 min read
How to join a worker node to a Docker Swarm
To join a worker node to a Docker Swarm, you need to use the docker swarm join command on the worker node. Here are the general steps: 1....
bottom of page