Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

When using Linux, it’s common to work with servers that are not nearby. To handle files and folders on these distant servers, you need a way to reach their files securely. One good way to do this is by connecting to the remote file system over SSH (Secure Shell). SSHFS is a tool that lets you connect to folders on a remote server through SSH, right from your own computer. To get SSHFS, you simply install it using the package manager specific to your Linux distribution. Once installed, SSHFS allows you to access and manage remote directories as if they…

Read More

VNC ( Virtual Network Computing ) Servers enables remote desktop access for Linux systems similar to MSTSC in windows. Generally Linux administrators doesn’t prefer to use windows access, But some times we required to have access remote desktop of Linux. In that case we need to install vnc server on our Linux system. This tutorial will help you to Setup VNC Server and configure remote access for users on CentOS, RHEL and Fedora Users. Step 1: Install Required Packages Most of Linux servers doesn’t have desktop installed on their system. So make sure you have installed else use following command…

Read More

Installing Apache OpenOffice on Fedora is a simple process that allows you to use a powerful, free office suite on your computer. OpenOffice includes programs like a word processor, spreadsheet, and presentation maker, which are similar to Microsoft Office. In this guide, we will explain how to install Apache OpenOffice on your Fedora system in easy steps. Whether you are new to Fedora or installing software for the first time, this guide will help you get started quickly and easily. System Requirements: Operating System: Fedora 30 or higher. Processor: 64-bit (x86-64) or higher. Memory: At least 256 MB of RAM,…

Read More

MariaDB 10.0 Stable version has been released and available to install using yum package manager. Today we have upgrading TecAdmin.net database server from MariaDB 5.5 to MariaDB 10.0 using Yum. This upgrade goes very smooth for me. But be carefully and keep backup for you all database to recovery from unnecessary damage. Step 1: Backup Databases We recommend to backup all your databases before upgrading mariadb. You can use any tool as per your preference to do it. For this example i am taking a full backup of all databases using mysqldump. # mysqldump -u root -p –all-databases > alldb.sql…

Read More

Installing and configuring VsFTPd (Very Secure FTP Daemon) on Fedora Linux involves several steps. This article will guide you through the process, ensuring that you have a secure and efficient FTP server up and running. VsFTPd is known for its security and speed, making it a popular choice for setting up an FTP server on Linux systems. It supports both anonymous and authenticated FTP access and can be configured for high performance and security. Pre-requisites A system running Fedora Linux Sudo privileges or access to the root user Installation of VsFTPd 1. Update System Packages: Begin by updating your system’s…

Read More

Monit is a powerful, open-source utility for managing and monitoring Unix systems. Widely appreciated for its simplicity and ease of use, Monit conducts automatic maintenance and repair of system services, offering peace of mind for system administrators. This article provides a comprehensive, step-by-step guide to installing, configuring, and utilizing Monit on a Linux system. Step 1: Installing Monit Monit is available in the repositories of most Linux distributions. To install Monit, use your distribution’s package manager. For Debian/Ubuntu systems, you can use: sudo apt-get update sudo apt-get install monit For Red Hat/CentOS systems, use: sudo yum install monit For Arch…

Read More

Security is the first priority for any production applications. If your site is providing payment option, then we recommend to must have an SSL certificate on your site. This article is for Node.js users, in this article we are describing SSL configuration with a node.js application. Step 1: Create Self Signed SSL For the production applications, you would required to purchase a verified SSL from certificate authorities. In this tutorial we are using a self signed ssl certificate which is enough for development applications. First create a CSR for you domain, Provide the desired values to asked questions. # cd…

Read More

An array is a collection of similar types of data. It is a data structure that can store a fixed-size sequential collection of elements of the same type. Arrays are particularly useful when there is a need to store a large number of data of the same type. In C programming, array is a powerful and complex tool that is used in various scenarios for different purposes. Understanding the Basics of Arrays An array is defined as finite ordered collection of homogenous data, stored in contiguous memory locations, which can be accessed individually by adding an index to a unique…

Read More

MongoDB is a popular, open-source NoSQL database that provides high performance, high availability, and automatic scaling. As a document-based database, it stores data in flexible, JSON-like documents, making it easy to work with and integrate into various applications. In this article, we’ll cover the fundamentals of creating and dropping databases in MongoDB, allowing you to confidently manage your data. Table of Contents Prerequisites Understanding MongoDB Structure Creating a MongoDB Database Listing Databases Dropping a MongoDB Database Conclusion 1. Prerequisites Before diving into creating and dropping databases, ensure that you have MongoDB installed on your system. You can download it from…

Read More

In the world of database management, flexibility and organization are key. MySQL, as one of the most popular database management systems, is no exception to this rule. One critical aspect of managing a MySQL database is knowing how to change its default data directory. This article guides you through the steps to efficiently and safely move your MySQL data to a new location. Why Change the Default Data Directory? Before diving into the how, let’s understand the why. There are several reasons to change the default data directory in MySQL: Storage Management: As your database grows, you might run out…

Read More