Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created February 28, 2015 15:38
Show Gist options
  • Select an option

  • Save flashvnn/591393d8324727c7755a to your computer and use it in GitHub Desktop.

Select an option

Save flashvnn/591393d8324727c7755a to your computer and use it in GitHub Desktop.
Install PHP 5.5 on CentOS
https://der-linux-admin.de/2014/12/centos-zusaetzliche-php-versionen-php-5-5-php-5-4-fuer-plesk-bereitstellen/
PHP-Versionen (PHP 5.4 / PHP 5.5) unter für CentOS 6
Installation des Software Collections Repository für PHP 5.5:
yum install https://www.softwarecollections.org/en/scls/rhscl/php55/epel-6-x86_64/download/rhscl-php55-epel-6-x86_64.noarch.rpm yum install https://www.softwarecollections.org/en/scls/remi/php55more/epel-6-x86_64/download/remi-php55more-epel-6-x86_64.noarch.rpm
1
2
yum install https://www.softwarecollections.org/en/scls/rhscl/php55/epel-6-x86_64/download/rhscl-php55-epel-6-x86_64.noarch.rpm
yum install https://www.softwarecollections.org/en/scls/remi/php55more/epel-6-x86_64/download/remi-php55more-epel-6-x86_64.noarch.rpm
Installation von PHP 5.5:
yum install scl-utils php55 php55-php-mysqlnd php55-php-pdo php55-php-mcrypt php55-php-gd php55-php-mbstring php55-php-xml php55-php-pear php55-php-soap
1
yum install scl-utils php55 php55-php-mysqlnd php55-php-pdo php55-php-mcrypt php55-php-gd php55-php-mbstring php55-php-xml php55-php-pear php55-php-soap
Installation des Software Collections Repository für PHP 5.4:
yum install https://www.softwarecollections.org/en/scls/rhscl/php54/epel-6-x86_64/download/rhscl-php54-epel-6-x86_64.noarch.rpm yum install https://www.softwarecollections.org/en/scls/remi/php54more/epel-6-x86_64/download/remi-php54more-epel-6-x86_64.noarch.rpm
1
2
yum install https://www.softwarecollections.org/en/scls/rhscl/php54/epel-6-x86_64/download/rhscl-php54-epel-6-x86_64.noarch.rpm
yum install https://www.softwarecollections.org/en/scls/remi/php54more/epel-6-x86_64/download/remi-php54more-epel-6-x86_64.noarch.rpm
Installation von PHP 5.4:
yum install scl-utils php54 php54-php-mysqlnd php54-php-pdo php54-php-mcrypt php54-php-gd php54-php-mbstring php54-php-xml php54-php-pear php54-php-soap
1
yum install scl-utils php54 php54-php-mysqlnd php54-php-pdo php54-php-mcrypt php54-php-gd php54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment