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…
Author: Rahul
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…
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…
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…
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…
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…
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…
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…
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…
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…