Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Mrudgandha Kulkarni
Page 8 of 14
Deploying MySQL on Kubernetes {Guide}
MySQL is one of the most popular relational database management systems in use today, and running it on Kubernetes can provide a highly scalable and flexible solution for managing your database workload. In this guide, we will walk you through the process of deploying MySQL on Kubernetes, from setting up a Kubernetes cluster to creating a MySQL deployment, adding persistent storage, and exposing the deployment with a service. We will be using YAML files to define our Kubernetes resources, and we will also provide detailed explanations and examples of each step along the way. Whether you're new to Kubernetes ...
Read MoreDigitally Sign Documents in Linux Using ONLYOFFICE Desktop Editors
Digital signatures are an essential aspect of document security in modern computing. They ensure that the document hasn't been altered and that it comes from a trusted source. Digital signatures are widely used in business, legal, and government settings, but they're also useful for personal documents. ONLYOFFICE Desktop Editors provides Linux users with a comprehensive solution for digitally signing documents using cryptographic methods. What is a Digital Signature? A digital signature is a mathematical technique used to verify the authenticity and integrity of a digital document or message. It provides a way for the recipient of a document ...
Read MoreCreating Software RAID0 (Stripe) on ‘Two Devices’ Using ‘mdadm’ Tool in Linux
RAID 0 (Stripe) stands for Redundant Array of Inexpensive Disks. It is a data storage technique that combines multiple disks into a single logical unit to provide improved performance and storage capacity. RAID 0 uses striping to write data across multiple disks simultaneously, offering faster data access but no redundancy. In this article, we will learn how to create RAID 0 on two devices using the mdadm tool in Linux. What is RAID 0? RAID 0, also known as striping, divides data into blocks and writes them across all disks in the array. This allows for faster ...
Read MoreCreating Virtual Hosts, Generate SSL Certificates _ Keys and Enable CGI Gateway in Gentoo Linux
Setting up a web server to host multiple websites is a common task for system administrators and developers. In this guide, we will cover how to create virtual hosts, generate SSL certificates and keys, and enable CGI gateway in Gentoo Linux. Virtual hosts allow you to host multiple websites on a single server, each with their own unique domain name and content. This is useful when you want to host multiple websites with different purposes or for different clients on a single server. Enabling SSL on your website is important for security and to establish trust with your ...
Read MoreCryptmount – A Utility to Create Encrypted Filesystems in Linux
Cryptmount is a Linux utility that allows you to create encrypted filesystems. With cryptmount, you can create an encrypted container that can be mounted as a virtual drive, and any data stored in that container will be automatically encrypted and decrypted as needed. This provides a secure way to protect sensitive data, even if your computer is compromised. What is Cryptmount? Cryptmount works by creating a virtual block device that can be mounted as a regular filesystem. The data stored on this virtual device is encrypted using strong ciphers, and a key is required to decrypt the data. ...
Read MoreCumulus - A Real Time Weather App for Linux Desktops
Cumulus is a powerful, real-time weather application designed for Linux desktops. It is a lightweight and user-friendly application that provides users with up-to-date weather information in a visually appealing way. With Cumulus, users can stay current with weather conditions, view hourly and daily forecasts, and receive severe weather alerts for their area. For Linux users, finding a reliable weather application that works seamlessly with their desktop environment can be challenging. Many weather apps available on Linux are either outdated or lack the features needed for comprehensive weather tracking. This is where Cumulus excels. Cumulus is a feature-rich weather ...
Read MoreDeeper into Function Complexities with Shell Scripting
As a Linux user, you may already be familiar with shell scripting, the practice of writing scripts in the command-line interface to automate tasks and improve efficiency. While simple shell scripts can be easy to write and understand, more complex scripts can be challenging to debug and maintain. This article explores the deeper complexities of shell scripting with functions, covering advanced techniques for writing modular and maintainable code. Reviewing Shell Scripting A shell script is a text file containing a series of commands executed sequentially. These commands can be basic Linux utilities or complex programs that execute other ...
Read MoreDeploy and Manage Rancher Management Cluster with Workload Cluster in BMC
In the world of containerization and microservices, it has become increasingly important to manage and orchestrate container workloads across a large infrastructure. Rancher is an open-source container management platform that makes it easy to deploy and manage container workloads across multiple clusters and clouds. This article will guide you through the process of deploying and managing a Rancher management cluster with a workload cluster in BMC (Bare Metal Cloud). Prerequisites Before we begin, there are a few prerequisites you need to meet − A BMC account with access to the BMC cloud infrastructure. Familiarity with Kubernetes ...
Read MoreDifferent Ways to Read File in Bash Script Using While Loop
Reading files is an essential aspect of shell scripting in the Bash environment. In Bash, reading files can be achieved using different techniques, and one of the most popular and versatile methods is using the while loop. The while loop in Bash is a powerful construct that allows us to iterate through a file line by line, making it easier to manipulate and process data. Understanding the While Loop in Bash The while loop in Bash follows a specific syntax − while [condition] do # code to execute done The loop ...
Read MoreDifferent Ways to Use Column Command in Linux
If you're a Linux user, you're probably familiar with the command-line interface. It's a powerful tool for working with files, directories, and other aspects of your system. However, if you're working with large amounts of text data, it can be challenging to make sense of everything. That's where the column command comes in. This command allows you to format text into columns, specify delimiters, align columns, wrap text, and even sort columns of data. In this article, we'll explore the different ways to use the column command in Linux and how it can help you work more efficiently with text ...
Read More