Есть проект с открытым исходным кодом, который я хочу установить на свой сервер, Grav, но это требует PHP 5.5.9. В настоящее время у меня установлен PHP 5.4.16 на сервере CentOS 7, работающем в NGINX. На самом деле, это PHP-FPM. Итак, мой вопрос: что является самым простым и чистым способом достижения этого?
Я прочитал много статей в Интернете об этом, и у каждой из них, похоже, свой подход, такой как удаление текущей версии PHP и переустановка с нуля.
Чтобы получить более современную версию PHP, вам нужно использовать альтернативный репозиторий. Есть несколько вариантов на выбор, которые традиционно упаковывают более новую версию компонентов стека LAMP, таких как Remi, но для бродилки Centos7, которую я сейчас использую, я пошел с webtatic.
Вы должны просто следовать инструкциям по настройке альтернативного репо с помощью yum. В настоящее время это включает в себя:
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
После установки сделать yum search php
и вы найдете PHP версии 5.5, 5.6, 7.0 и 7.1 на выбор.
Вместо yum install php вы будете делать что-то вроде yum install php56w
,
Например, на моей виртуальной машине это то, что я имею для php:
[vagrant@localhost:~]$ rpm -qa | grep php
php56w-5.6.31-1.w7.x86_64
php56w-process-5.6.31-1.w7.x86_64
php56w-opcache-5.6.31-1.w7.x86_64
php56w-xml-5.6.31-1.w7.x86_64
php56w-pear-1.10.4-1.w7.noarch
php56w-common-5.6.31-1.w7.x86_64
php56w-cli-5.6.31-1.w7.x86_64
php56w-mbstring-5.6.31-1.w7.x86_64
php56w-pdo-5.6.31-1.w7.x86_64
php56w-mysqlnd-5.6.31-1.w7.x86_64
php56w-fpm-5.6.31-1.w7.x86_64
php56w-gd-5.6.31-1.w7.x86_64
Вам нужно будет удалить текущую версию php, так что это сложная операция, и вы хотите выполнить пробный запуск и быть уверенным, что знаете, что делаете.
Что касается уверенности в том, что что-то не сломается, с Vagrant / Virtualbox / Docker и т. Д., То нет никаких оправданий тому, что вы сначала не протестировали это на виртуальной машине.
Не говоря уже о том, что это фундаментальная технология для современного развития в наши дни.
Вот быстрый и простой Vagrantfile для ванильного блока Centos7, который вы можете запустить и запустить (при условии, что Vagrant установлен и работает).
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "centos/7"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 8080, host: 8080
# config.vm.network "forwarded_port", guest: 80, host: 80
# config.vm.network "forwarded_port", guest: 3306, host: 3306
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.20.20"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
config.vm.synced_folder "./data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
# such as FTP and Heroku are also available. See the documentation at
# https://docs.vagrantup.com/v2/push/atlas.html for more information.
# config.push.define "atlas" do |push|
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"# end
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
end
Других решений пока нет …