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..

MySQL is a well-liked free database management system and also a prominent component of the LAMP stack. MySQL has been replaced with MariaDB in Debian repositories, which is a decent alternative to MySQL and pretty much performs every operation that MySQL performs. MySQL is currently not available for Debian 11 Bullseye, so MariaDB is a perfect choice. This article is focusing on how to install MariaDB, an alternative to MySQL on Debian 11. Install MariaDB on Debian 11 The MariaDB packages are available under the official repositories. You can directly install it without adding an extra repo to your system.…

Read More

SFTP (SSH File Transfer Protocol) is a secure file protocol used to access, manage, and transfer files over an encrypted SSH transport session. Security first is a thumb rule for the system administrators. In some cases, we need to allow remote users to access the filesystem on our system, but you don’t want to allow them to get a shell. This will allow you a secure channel to provide limited access to specific files and directories. This tutorial will help you to setup SFTP only access (without shell access) on Debian 11 system. It will create a chroot environment on…

Read More

Apache is the most popular web server developed by the Apache Foundation in 1995. It comes under Apache License 2.0. It is a cross-platform application available for most of the older operating systems like Linux, Windows, and macOS systems. With a 45% of market share, Apache is serving almost every second website on the internet. Which tells its popularity between users. In this tutorial, we will discuss some commonly used commands for managing Apache servers on Ubuntu and Debian-based systems. This includes how to enable/disable a virtual host, module, or configuration file in the Apache server. 1. Check Apache Version…

Read More

An open-source, object-based relational database PostgreSQL, provides the user with the implementation of SQL and is commonly hosted on Linux. With PostgreSQL users can expand the system by defining self-data types, functions, and operators. PostgreSQL is used by many large companies to save and store their data for various applications and it supports various programming interfaces as well as videos, texts, and images. In this article we’ll first go through the installation of PostgreSQL on ubuntu 20.04 then we’ll configure it to allow remote connection Prerequsities This article assumes that you already have running a PostgreSQL server on your system.…

Read More

Coding is part of every developer’s life and IDE (Integrated Development Environment) makes this job easier for them. IDEs come with tons of handy features and support programming of various languages within the same environment. Furthermore, IDEs provide users with plug-ins for adding the extra capability to the program and auto-complete tags and classes to make programming faster. Users can also utilize the pre-provided piece of code in their programs. IDEs make coding faster and easier and hence today we’re here to discuss the 10 best Code Editors (IDEs) available for Linux. 1. Atom Atom comes with modern user interfaces…

Read More

Facebook is one of the leading social media networks. It is freely available for everyone around the world. Anyone can simply create an account using their email address and mobile number. After creating the account, you can access all of its features. Facebook is available as a web application as well as provides mobile applications like Android and iOS. You can easily find the mobile applications from the respective play store. But none of the official applications are available for Desktop systems like Ubuntu. Even you can access it in the web browser, but sometimes we need a desktop application…

Read More

The SSH server has default enabled the strict host key checking. When the key checking is enabled, the SSH client connects only those hosts, that valid host keys are stored in the known host’s file. You can find the fine at ~/.ssh/known_hosts. Once you are connected to a remote host file time via SSH, the SSH clients check for the host key file under the known_hosts file. If the key is found, you will be connected to a remote server after authentication, but if key doesn’t found in the known_hosts file, the command will show a warning message and a…

Read More

NodeJs is a JavaScript framework that allows users to easily develop autonomous network applications for general-purpose programming. NodeJs is free to make web application development more uniform and integrated through the use of JavaScript on both the front and back ends. It is available for all Operating Systems; in this article, you will learn how to install NodeJs on your Debian system (Linux OS) so that you can build amazing applications using NodeJs. Given below are three methods to install NodeJs on Debian 11, you can follow any of these you find easier for successful installation: Installing Node.js from Debian…

Read More

A developer is working on computer vision and he needs some 3D modeling algorithms but he does not have much time so what can he do? He can go to OpenCV, and can have the required algorithm from there. So what is OpenCV? OpenCV is a platform having a huge number of algorithms. It was initially introduced as a research project by Intel in 2006 but today it is the largest platform having 2500+ algorithms and a huge number of interfaces which can be utilized in different languages such as Python, Java etc. moreover, it is an open-source which means…

Read More

Redis is an open-source in-memory database for storing data structure, caching, and as a message broker. It supports data structures such as strings, lists, sets, hashes, sorted sets with range queries, bitmaps, HyperLogLogs, and geospatial indexes with radius queries. Redis has a built-in replication feature, which makes it work as highly available clusters in your production environments. This tutorial will help you to install Redis server on Debian 11 (Bullseye) Linux system. Step 1: Updating System Packages It’s a good practice to keep packages up to date on your system. You should always update the before beginning any major installations.…

Read More