php5.6.27 installation tutorial

藏色散人
Release: 2023-03-10 20:24:02
Original
2474 people have browsed it

php5.6.27 installation method: first install the compilation tool, and add the PHP group and user; then install the dependencies, add the expansion package, and update the yum source; then download PHP and unzip it for installation; finally configure PHP.

php5.6.27 installation tutorial

The operating environment of this article: centos7 system, php5.6.27 version, DELL G3 computer

php5.6.27 installation tutorial

centos7 Compile and install php5.6.27

Install compilation tools

yum -y install gcc gcc-c++
Copy after login

Add php group and user, do not create a home directory , not allowed to log in to the system

#-M, --no-create-home        不创建用户的主目录
#-g, --gid GROUP        新账户主组的名称或 ID
#-s, --shell SHELL        新账户的登录 shell
groupadd web
useradd -M -s /sbin/nologin -g web php
Copy after login

Install dependencies, if there is no libmcrypt libmcrypt-devel mcrypt mhash, add the expansion package and update the yum source

yum -y install epel-release
yum -y update
yum -y install libmcrypt libmcrypt-devel mcrypt mhash
yum -y install libxml2-devel libpng-devel libjpeg-devel zlib bzip2 bzip2-devel \
libtool-ltdl-devel pcre-devel openssl-devel freetype-devel libcurl-devel icu \
perl-libintl postgresql libicu-devel
Copy after login

Download php and decompress

cd /usr/local/src/
wget http://cn2.php.net/distributions/php-5.6.27.tar.gz
tar -zxvf php-5.6.27.tar.gz
cd php-5.6.27/
Copy after login

Install php

./configure \
--prefix=/usr/local/php5.6.27 \
--with-config-file-path=/usr/local/php5.6.27/etc/ \
--enable-inline-optimization \
--enable-shared \
--enable-opcache \
--enable-fpm \
--with-fpm-user=php \
--with-fpm-group=web \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gettext \
--enable-mbstring \
--with-iconv \
--with-mcrypt \
--with-mhash \
--with-openssl \
--enable-bcmath \
--enable-soap \
--with-libxml-dir \
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--enable-intl \
--with-curl \
--with-zlib \
--enable-zip \
--with-bz2 \
--enable-xml \
--with-pcre-dir \
--with-gd \
--enable-static \
--enable-wddx \
--with-xmlrpc \
--with-libdir=/usr/lib64 \
--with-jpeg-dir=/usr/lib64 \
--with-freetype-dir=/usr/lib64 \
--with-png-dir=/usr/lib64
make && make install
Copy after login

Configure PHP

cp php.ini-development /usr/local/php5.6.27/etc/php.ini
cp /usr/local/php5.6.27/etc/php-fpm.conf.default /usr/local/php5.6.27/etc/php-fpm.conf
Copy after login

Create startup

vi /lib/systemd/system/php-fpmd.service
Copy after login
[Unit]
Description=The PHP FastCGI Process Manager
After=network.target
[Service]
Type=forking
PIDFile=/run/php-fpm.pid
ExecStart=/usr/local/php5.6.27/sbin/php-fpm --daemonize -g /run/php-fpm.pid
ExecReload=/bin/kill -USR2 $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target
Copy after login

PS: If yum is installed, the content of the php-fpm.service file

[Unit]
Description=The PHP FastCGI Process Manager
After=syslog.target network.target
[Service]
Type=notify
PIDFile=/run/php-fpm.pid
EnvironmentFile=/etc/sysconfig/php-fpm
ExecStart=/usr/sbin/php-fpm --nodaemonize
ExecReload=/bin/kill -USR2 $MAINPID
PrivateTmp=true
[Install]
Copy after login

WantedBy=multi -user.target

Add running permission

chmod +x /lib/systemd/system/php-fpmd.service
Copy after login

Set auto-start at boot

systemctl enable php-fpmd.service
Copy after login

Run

systemctl start php-fpmd.service
Copy after login

Stop

systemctl stop php-fpmd.service
Copy after login

Reload

systemctl daemon-reload
Copy after login

Delete boot

systemctl disable php-fpmd.service
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of php5.6.27 installation tutorial. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!