HCRM博客

如何在CentOS 6.5上成功安装PHP?

在CentOS 6.5上安装PHP,可以通过编译安装或使用yum包管理器进行安装,以下是详细的步骤和说明:

通过编译安装PHP

1、安装必要的依赖包

如何在CentOS 6.5上成功安装PHP?-图1
(图片来源网络,侵权删除)

执行命令yum y install make gcc gccc++ flex bison file libtool libXML2 libxml2devel zlib zlibdevel kerneldevel libjpeg libjpegdevel libpng libpngdevel freetype freetypedevel libevent libeventdevel ncurses ncursesdevel curl curldevel epelrelease gettext openssl openssldevel libxml* libxml2devel bzip2 bzip2devel krb5 krb5devel libidn libidndevel unzip lsof libcap gmp gmpdevel pspell pspelldevel libmcrypt libmcryptdevel mcrypt mhash openldap openldapdevel nss_ldap jemalloc jemallocdevel cmake boostdevel bison automake libtool* glibc glibcdevel glib2 glib2devel bzip2 bzip2devel readline readlinedevel gdb gdbdevel ncurses ncursesdevel ncursesdevellibs ncursesstatic ncursesstaticlibs expat expatdevel libXpm libXpmdevel libXrender libXrenderdevel libXrandr libXrandrdevel xorgx11serverutils xorgx11xauth xorgx11apps xorgx11fonts75dpi xorgx11fontsType1 xorgx11fontscyrillic xorgx11fontsmisc xorgx11fonts100dpi xorgx11fontschinese xorgx11fontsjapanese xroot xorgx11common xorgx11commonlibs xorgx11commonutilities xorgx11xtrans xorgx11xtransdevel xorgx11xtransutils xorgx11xtranslibs xorgx11fontsthai xorgx11fontsvietnamese xorgx11fontskorean xorgx11fontsUrdu xorgx11fontsTurkish xorgx11fontsIcelandic xorgx11fontsSwedish xorgx11fontsFinnish xorgx11fontsFrench xorgx11deutch xorgx11Italian xorgx1x11Estonian xorgx11Basque xorgx11Mexican xorgx11Spanish xorgx11Catalan xorgx11Persian xorgx11Greek xorgx11Arabic xorgx11Hebrew xorgx1x11Malayalam xorgx11Marathi xorgx11Bengali xorgx11Assamese xorgx11Gujarati xorgx11Punjabi xorgx11Oriya xorgx11Tamil xorgx1x11Telugu xorgx11Sindhi xorgx11Kannada xorgx11Malabar xorgx11Malayalam xorgx11Marathi xorgx11Bengali xorgx11Assamese xorgx11Gujarati xorgx11Punjabi xorgx11Oriya xorgx11Tamil xorgx11Telugu xorgx11Sindhi xorgx11Kannada xorgx11Malabar

2、下载并解压PHP源码

从官网下载PHP源码,如php7.2.5.tar.gz。

将压缩包上传到服务器,并解压到指定目录,如/data/soft。

进入解压后的目录,执行以下命令开始编译安装:

```bash

如何在CentOS 6.5上成功安装PHP?-图2
(图片来源网络,侵权删除)

cd /data/soft/php7.2.5

./configure prefix=/usr/local/php7 withzlib withcurl enablexml withgd withopenssl enablefpm withsoap withzip enablesoap withpdomysql withmysqli withpdopgsql withopenssl withsockets withmcrypt withmbstring withmhash withgettext withconfigfilepath=/usr/local/php7/etc withconfigfilescandir=/usr/local/php7/conf.d

make

make install

```

3、配置phpfpm和Nginx

如何在CentOS 6.5上成功安装PHP?-图3
(图片来源网络,侵权删除)

编辑phpfpm配置文件,将默认的配置文件复制到指定位置,并进行必要的修改。

启动phpfpm服务,并设置为开机自启。

编辑Nginx配置文件,添加对PHP的支持,并重启Nginx服务。

4、验证安装

使用php v命令查看PHP版本,确认安装成功。

检查phpfpm监听的端口,确保服务正常运行。

通过yum安装PHP

1、更新系统并安装epel源

执行以下命令以更新系统并安装epel源,以便能够获取更高版本的PHP包。

```bash

yum update

rpm Uvh http://mirror.webtatic.com/yum/el6/latest/x86_64/webtaticrelease.rpm

yum update

```

2、安装PHP及相关扩展

根据需要安装指定版本的PHP及其相关扩展,

```bash

yum install php56w php56wcommon php56wpear php56wpdo php56wmysql php56wxml php56wfpm php56wmbstring php56wmcrypt php56wjson php56wopcache

```

3、启动并配置phpfpm

启动phpfpm服务,并设置为开机自启。

```bash

service phpFpm start

chkconfig phpFpm on

```

4、配置Nginx

如果使用Nginx作为Web服务器,请编辑Nginx配置文件,添加对PHP的支持,并重启Nginx服务。

5、验证安装

使用php v命令查看PHP版本,确认安装成功,检查phpfpm监听的端口,确保服务正常运行。

常见问题及解决方案

1、问题:编译过程中缺少某些依赖包

解决方案:根据编译过程中的提示信息,使用yum命令安装缺失的依赖包。

2、问题:Nginx配置文件中的PHP模块未启用

解决方案:确保在Nginx配置文件中正确添加了对PHP的支持,并重启Nginx服务。

3、问题:phpfpm服务无法启动

解决方案:检查phpfpm配置文件中的设置是否正确,特别是端口号是否被占用,可以使用netstat命令查看端口占用情况。

是在CentOS 6.5上安装PHP的详细步骤和说明,无论是通过编译安装还是使用yum包管理器进行安装,都需要仔细按照步骤操作,并根据实际情况进行调整,如果在安装过程中遇到问题,可以参考上述常见问题及解决方案进行处理。

分享:
扫描分享到社交APP
上一篇
下一篇