Report this

What is the reason for this report?

How to install mcrypt on CentOS 7.6?

Posted on October 12, 2019

This php script I am using requires mcrypt but the mcrypt module is depreciated and no longer available.

I tried yum -y install epel-release and yum -y install php-mcrypt but this doesn’t work.

Are there any other ways to install mcrypt?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hey, @umijs

I managed to get this installed on my droplet using the following commands:

sudo yum install epel-release
sudo yum install libmcrypt-devel

If you are running the default PHP installation you will want to run the following command as well.

sudo yum install php-mcrypt

Also you will need to find which is your main php.ini file and add or uncomment the following line:

extension=mcrypt.so

Let me know how it goes.

Hey @danielzhang,

The mcrypt library was deprecated in PHP 7.1, and it was removed entirely in PHP 7.2. If you’re using PHP 7.3 or a later version, you can’t enable mcrypt in the same way as before. Instead, you’ll need to use a different method.

However, if you still need to use mcrypt due to some legacy code that you can’t update to use a more modern encryption method, there’s a PECL extension available that brings back mcrypt to PHP 7.3 or later versions.

In this example, we’ll be using 8.1

Install prerequisites

Before you install the mcrypt extension, you’ll need to make sure that you have some necessary packages installed on your system.

On Ubuntu:

  1. sudo apt-get update
  2. sudo apt-get install php-pear php8.1-dev gcc make autoconf libc-dev pkg-config libmcrypt-dev php-pear

On CentOS:

  1. sudo yum install php-pear php-devel gcc make autoconf libc-dev pkg-config libmcrypt-devel php-pear

Install mcrypt extension

After you’ve installed these packages, you can install the mcrypt extension itself:

  1. sudo pecl install mcrypt-1.0.3

During the installation, you may be asked for the libmcrypt prefix. If you are, press enter to skip.

Configure PHP to use the mcrypt extension

After the installation is complete, you’ll need to tell PHP to use the mcrypt extension. To do this, you’ll need to modify your php.ini file.

First, you’ll need to find it. You can do this by using the following command:

  1. php --ini

Look for the line that says “Loaded Configuration File”. This will tell you where your php.ini file is located.

Open this file with your favorite text editor (like nano or vim). For example:

  1. sudo nano /etc/php/8.1/cli/php.ini

Add the following line to the file:

  1. extension=mcrypt.so

Restart your web server

Finally, you’ll need to restart your web server for the changes to take effect.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.