Update VestaCP to PHP 7.1 on CentOS 7 5
VestaCP

Update VestaCP to PHP 7.1 on CentOS 7

This guide is very similar to our other guide on installing PHP 7 since we’re using the same method although this time, as the title suggests we’ll be using the latest stable version of PHP instead, 7.1.

Update VestaCP to PHP 7.1 on CentOS 7 6

You’ll need the Remi repository enabled to do this since PHP 7.1 isn’t available in the default repos, if you haven’t already got it installed then you should check out our guide on how to first (if you need to see if Remi is enabled run “sudo yum repolist” and check if EPEL and Remi is listed).

First let’s make sure your server is up to date.

sudo yum update

We’ll also check what version of PHP we have installed for reference.

php -v

Now we make sure that yum-utils is installed

sudo yum install yum-utils

Update VestaCP to PHP 7.1 on CentOS 7 7

If it’s already installed, great move on to the next step, if not then allow it to install.

Now we can enable remi-php71

sudo yum-config-manager --enable remi-php71
You’ll get a large output after doing this.
You’ll get a large output after doing this.

Now we can tell yum to update, this will upgrade our old version of PHP to 7.1

sudo yum update
Yum will handle all the work for us in the upgrade
Yum will handle all the work for us in the upgrade

After the process has finished your server will now have PHP 7.1 installed, we need to restart our web server for it to take effect however.

If you have Apache and NGINX installed, or just Apache installed run

sudo service httpd restart

If you are running NGINX and PHP-FPM then run

sudo service php-fpm restart && sudo service nginx restart

Lastly we’ll check the PHP version like we did at the start

php -v

And you should see something similar to

PHP 7.1.8 (cli) (built: Aug 2 2017 12:13:05) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies

This isn’t required but if you would like to keep your system clean then we can now disable the older versions of PHP from our system. To do this run the following

sudo yum-config-manager --disable remi-php56
sudo yum-config-manager --disable remi-php55
sudo yum-config-manager --disable remi-php56-debuginfo
sudo yum-config-manager --disable remi-php55-debuginfo
sudo yum clean all
sudo yum update

And that’s it, now you have PHP 7.1 running on your VestaCP install on CentOS 7.1

Avatar of jamesblackvn

Tui là jamesblackvn!

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

Website này sử dụng Akismet để hạn chế spam. Tìm hiểu bình luận của bạn được duyệt như thế nào.