How To Install Drush for Drupal on CentOS 7

Drush is “a command line shell and scripting interface for Drupal. ” It is short for Drupal Shell. It’s possible to use Drush to get into Drupal, set up Drupal with a default or custom install profile, manage Drupal modules, sync a local Drupal website with distant staging and production servers, and a lot more.

Table of Contents

Step 1. First let’s start by ensuring your system is up-to-date.

Step 2. Installing Drush.

Prerequisites

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Drush for Drupal on a CentOS 7 server.
Install Drush for Drupal on CentOS 7

Step 1. First let’s start by ensuring your system is up-to-date.

yum clean all
yum -y update

Step 2. Installing Drush.

Method 1.

Install Composer.
Installing Drush CLi for Drupal7 on CentOS.

composer global require drush/drush

If you want to install specific version of Drush follow the below command. For example Drush 7.1.0:

composer global require drush/drush:7.1.0

Verify Drush using below command:

drush status

Update latest release:

composer global update

Method 2.

Run the below command to install pear:

yum install php-pear

Now run the following command to allow pear to recognize drush:

pear channel-discover pear.drush.org

Then install drush using below command:

pear install drush/drush

Verify Drush using below command:

drush status

Congratulation’s! You have successfully installed Drush for Drupal. Thanks for using this tutorial for installing Drush for Drupal on your CentOS 7 system. For additional help or useful information, we recommend you to check the official Drush for Drupal web site.

Leave a Reply