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

The LAMP stack is a combination of Linux, Apache, MySQL & PHP. Here Apache is the popular web server, MySQL is the relation database management system and PHP is programming language generally used for developing web applications. Most of the websites are built with PHP and MySQL, which is hosted with LAMP environment. For example, the popular blogging web platforms WordPress, Drupal are developed with PHP and MySQL. Both are widely hosted over the LAMP environment. This how-to guide helps you to install and configure LAMP Stack on a Debian 10 Linux system. Prerequisites You must have sudo privileges account…

Read More

Sometimes you need to adjust the permissions of files. By default, Git considers changes to file permissions as updates and marks these files as modified. This can be problematic if you want to keep your commits clean and focused solely on content changes, rather than on alterations to file permissions. To help streamline your workflow and prevent Git from cluttering your commit history with these types of changes, you can configure Git to ignore file permission changes. This simple adjustment in your Git settings ensures that only the actual content changes are tracked, making your version control process more efficient…

Read More

CentOS 8 is the latest release available for CentOS operating system. Our previous tutorial has the instructions for the installation of Apache on CentOS 8. This tutorial will help you to install PHP 7 on CentOS 8 and RHEL 8 Linux systems. PHP 7.4 is the latest stable version available for the installation. Setup Yum Repository For this tutorial, we will use the REMI repository for PHP installation on CentOS 8 Linux system. So add the REMI repository on your system using the following command. sudo dnf install dnf-utils http://rpms.remirepo.net/enterprise/remi-release-8.rpm REMI repository contains the PHP packages. You just need to…

Read More

This tutorial helps you to install and Use multiple Node.js versions on a single Linux machine. In this tutorial, we use the Node Version Manager (NVM) tool for the installation of Node.js. NVM Installation NVM install and Manage Node.js version in the user’s home directory. So you don’t need any root-level privileges. Simply login as a non-root user and follow tutorial. The NVM team provides a Bash script for the installation of NVM on the Linux system. You can simply execute this script on your machine to install NVM. curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash The installer makes an entry to the…

Read More

This tutorial will help you to install Nginx web server with PHP-FPM/FastCGI on Ubuntu 18.04 (Bionic) LTS system. In this tutorial, we are using PHP 7.3 and configure with Nginx using PHP-FPM and FastCGI. Nginx Installation Nginx packages are available under default repositories. SSH to your Ubuntu 18.04 LTS system with sudo privileges account and install Nginx web server from the official repository. sudo apt update sudo apt install nginx PHP Installation For the PHP installation we recommend to use ppa:ondrej/php PPA, which provides latest PHP versions for Ubuntu systems. Use the below couple of commands to add the PPA…

Read More

PHP FPM (FastCGI Process Manager) is an alternative implementation of PHP FastCGI. It provides some additional features like Adaptive process spawning which is useful for sites. This tutorial will help you to install Apache with PHP-FPM/FastCGI on Ubuntu 18.04 (Bionic) LTS system. In this tutorial, we are using PHP 7.3 and configure with Apache using PHP-FPM and FastCGI. Install Apache with PHP & FastCGI on CentOS/RHEL You can also visit the previous tutorial to configure Apache with multiple PHP versions using PHP-FPM/FastCGI on Ubuntu systems. Apache Installation Apache packages are available under default repositories. SSH to your Ubuntu 18.04 LTS…

Read More

PostgreSQL is an object-relational database management system that stores data in the form of tables. It is highly secure and reliable and allows for easy storage, access, and retrieval of data. The pgAdmin is a feature-rich web-based interface for the administration, development, and management of PostgreSQL. It is also an open-source, free software just like PostgreSQL. In this how-to guide we will learn to install PostgreSQL and pgAdmin4 on CentOS 8: How to Install PostgreSQL on CentOS 8 01. Multiple versions of PostgreSQL are available in a default repository of CentOS 8. They can be listed on the terminal by…

Read More

CentOS 8 is the latest release of CentOS Linux operating system, which is based on Red Hat Enterprise Linux 8. In this tutorial, we will help you to install the Apache web server on CentOS 8 or RHEL 8 system with additional configuration and security. Prerequsities SSH access to CentOS/RHEL 8 system Sudo privileges to user to install packages Step 1 – Install Apache on CentOS 8 First of all, Login to your CentOS 8 or RHEL 8 system via SSH. Then install Apache2 HTTP server packages using the following command. This will also install additional required packages on your…

Read More

Prerequsities You must have SSH with sudo privileges access to server for the Apache web server installation on Debian 10. Install Apache on Debian 10 First of all, Login to your Debain 10 system via SSH and update the Apt cache. Then install Apache2 HTTP server packages as below: sudo apt update sudo apt install apache2 Manage Apache Service Apache service is managed with systemctl command line. After installation, use the following command to check the status of Apache service. sudo systemctl status apache2.service Here is the other commands to stop, start or restart Apache service via command line. sudo…

Read More

Python is a powerful programming language. It is very friendly and easy to learn. During the latest update of this article Python 3.8.12 (of Python 3.8 series) latest stable version is available to download and install. This tutorial will help you to install Python 3.8 on Amazon Linux systems. Step 1 – Prerequaities This Python installation required the GCC compiler on your system. Login to your server using ssh or shell access. Now, use the following command to install prerequisites for Python before installing it. sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel Read: How to Use SSH to Connect…

Read More