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 common way to run PHP with Apache is the mod_php module. But PHP-FPM has several advantages over this. The PHP-FPM (FastCGI Process Manager) dramatically increases the performance of your Apache/PHP environment. So this is useful for high load websites. This tutorial will help you to configure PHP-FPM with Apache on CentOS 8 and RHEL 8 Linux system. Prerequsities Shell access to the CentOS 8 system with sudo privileges account. Complete initial server setup for newly installed systems. Step 1 – Install Apache The Apache packages are available under the default AppStream repository. You can simply update the DNF cache…

Read More

The FastCGI Process Manager (FPM) is an alternative to the FastCGI configuration with multiple enhancements. This is useful for high load websites. This tutorial will help you with the installation and configuration of PHP-FPM with Nginx on your Debian 10 Buster Linux system. Prerequsities You must have SSH access to the Debian 10 system with Sudo privileges. Nginx Installation Nginx packages are available under default repositories. SSH to your Debian 10 system with sudo privileges accounts and install the Nginx web server from the official repository. sudo apt update sudo apt install nginx PHP Installation For the PHP installation we…

Read More

The FastCGI Process Manager (FPM) is an alternative to the FastCGI configuration with multiple enhancements. This is useful for high load websites. This tutorial will help you with the installation and configuration of PHP-FPM with Apache on your Debian 10 (Buster) Linux system. Prerequisites You must have SSH access to the Debian 10 system with Sudo privileges. Apache Installation Apache packages are available under default Apt repositories on all Debian systems. You can update the Apt cache and install Apache web server packages using the following command: sudo apt update sudo apt install apache2 PHP Installation For the PHP installation…

Read More

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