php的安装及遇到问题解决方法

php的安装遇到的麻烦比较多,这里将自己安装的心得分享给大家,希望可以帮到大家。

因为我在编译php的时候,有指定mysql以及apache的路径,所以要先安装mysql和apache,两者的顺序随意,具体方法可以查看我mysql和apache的安装方法。关于PHP版本,我选择的是5.4版本。

1. php源码包下载

# cd /usr/local/src ##我习惯将下载的包放到这个路径

# wget http://cn2.php.net/distributions/php-5.4.44.tar.gz

# tar -zxvf php-5.4.44.tar.gz

2. 配置编译参数

# cd ./php-5.4.44

接下来要进行配置编译参数的过程,因为中间会一系列的报错,缺少的库非常多,所以建议先安装完所有需要的包,这样就不会太麻烦了,因为checking的时间会比较长。如果有时间想体验一下完整的过程,可以按部就班的yum。

先声明一下,libmcrypt-devel在centos的yum源中是找不到的,需要借助epel的yum源,阿里云的epel源是个不错的选择。可以在/etc/yum.repo.d/下新建一个CentOS-Base.repo,将如下内容粘贴并保存:

# CentOS-Base.repo

#

# The mirror system uses the connecting IP address of the client and the

# update status of each mirror to pick mirrors that are updated to and

# geographically close to the client.  You should use this for CentOS updates

# unless you are manually picking other mirrors.

#

# If the mirrorlist= does not work for you, as a fall back you can try the

# remarked out baseurl= line instead.

#

#

[base]

name=CentOS-$releasever - Base - mirrors.aliyun.com

failovermethod=priority

baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/

http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os

gpgcheck=1

gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-6

#released updates

[updates]

name=CentOS-$releasever - Updates - mirrors.aliyun.com

failovermethod=priority

baseurl=http://mirrors.aliyun.com/centos/$releasever/updates/$basearch/

http://mirrors.aliyuncs.com/centos/$releasever/updates/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates

gpgcheck=1

gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-6

#additional packages that may be useful

[extras]

name=CentOS-$releasever - Extras - mirrors.aliyun.com

failovermethod=priority

baseurl=http://mirrors.aliyun.com/centos/$releasever/extras/$basearch/

http://mirrors.aliyuncs.com/centos/$releasever/extras/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras

gpgcheck=1

gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-6

#additional packages that extend functionality of existing packages

[centosplus]

name=CentOS-$releasever - Plus - mirrors.aliyun.com

failovermethod=priority

baseurl=http://mirrors.aliyun.com/centos/$releasever/centosplus/$basearch/

http://mirrors.aliyuncs.com/centos/$releasever/centosplus/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus

gpgcheck=1

enabled=0

gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-6

#contrib - packages by Centos Users

[contrib]

name=CentOS-$releasever - Contrib - mirrors.aliyun.com

failovermethod=priority

baseurl=http://mirrors.aliyun.com/centos/$releasever/contrib/$basearch/

http://mirrors.aliyuncs.com/centos/$releasever/contrib/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib

gpgcheck=1

enabled=0

gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-6

下面是遇到的报错和解决办法:

error: xml2-config not found. Please check your libxml2 installation

# yum install -y libxml2-devel

error: Cannot find OpenSSL‘s <evp.h>

# yum install -y openssl openssl-devel

checking for BZip2 in default path... not found

error: Please reinstall the BZip2 distribution

# yum install -y bzip2 bzip2-devel

error: png.h not found.

# yum install -y libpng libpng-devel

error: freetype.h not found.

# yum install -y freetype freetype-devel

error: mcrypt.h not found. Please reinstall libmcrypt

# yum install -y epel-release

# yum install -y libmcrypt-devel

error: jpeglib.h not found.

# yum install libjpeg-devel

接下来命令行输入如下配置参数:

#./configure \

--prefix=/usr/local/php \

--with-apxs2=/usr/local/apache2/bin/apxs \

--with-config-file-path=/usr/local/php/etc\

--with-mysql=/usr/local/mysql \

--with-libxml-dir \

--with-gd \

--with-jpeg-dir \

--with-png-dir \

--with-freetype-dir \

--with-iconv-dir \

--with-zlib-dir \

--with-bz2 \

--with-openssl \

--with-mcrypt \

--enable-soap \

--enable-gd-native-ttf \

--enable-mbstring \

--enable-sockets \

--enable-exif \

--disable-ipv6

只要安装完上面提到的包,一般配置过程是不会报错的。如果报错了,根据错误信息,查找相应的包,自行安装就好了。

配置完毕可以用# echo $?来查看配置过程中有无错误,如果返回时0,就说明配置成功了。

3. 接下来就是编译和安装了:

# make && make install

经过漫长的编译安装过程,php就顺利安装完了。别忘啦echo $?来查看过程是否有出错,不过一般是不会出错的,返回结果依然是0!

恭喜你,php顺利安装完了!!!但是,安装完了还是不能用的,需要进行下面的操作:

# cp php.ini-production /usr/local/php/etc/php.ini

修改apache配置文件# vim /usr/local/apache2/conf/httpd.conf ## 在这里解释一下,我之前安装的apache是在/usr/local/apache2下面的。

找到: <Directory />

Options FollowSymLinks

AllowOverride None

Order deny,allow

Deny from all

</Directory>

将最后一行的Deny改成Allow,如果不修改,以后用浏览器访问我们的服务器的时候,会403禁访的。

然后找到:AddType application/x-gzip .gz .tgz

在该行下面添加: AddType application/x-httpd-php .php

说明:要想支持php脚本解析,必须要加上对应的类型。

再找到: <IfModule dir_module>

DirectoryIndex index.html

</IfModule>

将中间参数修改为:DirectoryIndexindex.html index.htm index.php

修改的目的是增加针对php的索引,如果一个站点默认页为index.php,那么就得加上这个index.php的支持。比如我们要在服务器上安装一个php论坛,没有上面的php解析,我们在浏览器上面打开配置好的虚拟主机地址的时候,显示的不是安装的图形界面,而是一片源码!!!

再找到: #ServerName www.example.com:80

修改为: ServerName localhost:80,将注释的#去掉,如果不去掉,在启动apache时,会有警告信息“httpd: Could not reliably determine the server‘sfully qualified domain name, using localhost.localdomain for ServerName”,看起来像是错误,其实没有影响。

查看配置文件是否有语法问题:

# /usr/local/apache2/bin/apachectl -t;如果显示Syntax OK,说明配置没问题了。

然后启动服务: # /usr/local/apache2/bin/apachectl start

查看一下httpd的进程: # ps aux |grep httpd,可以看到已经在进程表里面出现了httpd,说明已经成功完成了配置安装和最后的参数配置。

顺便说一下,apachectl的路径太长了,可以在PATH里面增加一个目录来实现快速执行apachectl的命令,具体操作如下:

# vim /etc/init.d/path.sh

#! /bin/bash

export PATH=$PATH:/usr/local/apache2/bin/ -->:wq

# source /etc/init.d/path.sh

这样,在命令行下面直接输入apachectl的时候,就可以直接执行命令了。

完了,喝口水!如果发现有错误,请留言,

时间: 2024-10-14 20:50:31

php的安装及遇到问题解决方法的相关文章

win7中VS2010中安装CSS3.0问题解决方法

win7中VS2010中安装CSS3.0问题解决方法 在安装Standards Update for VS2010 SP1后,VS2010中没有CSS3.0问题,以下是我的解决方法 1.首先去官网下载 CSS 3 Intellisense Schema 网址:http://visualstudiogallery.msdn.microsoft.com/7211bcac-091b-4a32-be2d-e797be0db210/view/Discussions/1 2.安装 3.Win+R 输入 re

Linux下安装 TestLink常见问题解决方法

Read/write permissions For security reason we suggest that directories tagged with [S] on following messages, will be made UNREACHEABLE from browser Checking if C:\xampp\htdocs\testlink-1.9.5\gui\templates_c directory exists OK Checking if C:\xampp\h

Genymotion模拟器的安装及常见问题解决方法

Genymotion是很好用很快的一款Android模拟器. 我们使用的时候下载一个免费版的就足够用了. 官网下载地址:http://www.genymotion.net/ 不过这个软件下载之前必须注册,因为我们后面在创建模拟器的时候也需要登录账号.注册的时候可能会需要FQ软件. 下载之后就直接进行安装,安装的时候全部下一步,并且所有的东西都要安装. 安装好之后我们还需要创建模拟器,这里创建模拟器的时候我们开始先试试能不能直接创建,如果可以则忽略下面括号中这一步,如果不能创建的话就进行下面括号中

安装pod出现问题解决方法

This just happened to me as well. Somehow the CocoaPods repo got borked. This fixed my situation: rm -rf ~/.cocoapods pod setup pod install Hope that helps! :) share|improve this answer 1 down vote Looks like you need to run pod setup Edit: In theory

U盘安装Centos后拔除U盘无法启动问题解决方法

U盘安装Centos后拔除U盘无法启动问题解决方法 分类: Hadoop 2014-06-30 15:47 646人阅读 评论(0) 收藏 举报 今天安装CentOS后发现把引导文件安装在U盘上了,所以不插U盘就无法进入CentOS系统,在网上找到这种方法成功摆脱U盘启动,避免重新用U盘做引导盘安装系统,简单省事,所以发个帖,留着以后备用. 1.进入centos后打开终端用root用户进入grub模式 #grub    grub>  find /grub/stage1  Error 15: Fi

MySql5.7.12免安装版配置以及服务无法启动问题解决方法

1.解压mysql-5.7.12-win32.zip文件. 2.在解压出来的文件夹中的BIN文件夹加入环境变量. 3.在解压出来的文件夹里建立data文件夹. 4.复制my-default.ini并将复制后的副本改名为my.ini文件,之后对my文件进行修改,将basedir和datadir进行相应的路径赋值. 5.在CMD中,进入建立的data文件夹,然后执行"mysqld  --initialize"进行data文件夹的初始化. 6.CMD进入bin文件夹中,执行"mys

zabbix中文乱码问题解决方法(Zabbix 2.2.3)

我把zabbix安装完成后,调整为中文界面,出现乱码. 原因:因为没有中文字体,没有设置显示字体为中文. 解决方法(网络整理收集): 1.获取一个字体文件,上传至zabbixServer的web目录fonts文件夹(/data/www/zabbix/fonts), Windows → 控制面板 → 字体 命名为小写字母 2.修改配置文件,/www/zabbix/include/defines.inc.php //define('ZBX_FONT_NAME', 'DejaVuSans'); def

centos7 &nbsp; Python安装及yum问题解决

centos7  Python安装及yum问题解决 当前系统centos7.2,系统自带Python版本为2.7.5.现在需要使用Python2.6版本,需要降级. 一,安装Python2.6 1.wget下载python,Python版本为2.6.6.wget http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tgz 2.解压pythontar xzf Python-2.6.6.tgzcd Python-2.6.6 3.编译安装python

Ubuntu遇到Please ensure that adb is correctly located at &#39;...adb.exe&#39; and can be executed 问题解决方法

上次我们在SDK更新的到最新的Android L版本之后,我发现我的ADT和android指定的版本不对应,我的ADT是22版本的,android L需要23版本以上的,版本不对应的话就无法加载这个SDK进去,通过上网查一下说是修改Android SDK目录下tolols目录下libs目录中plugin.prop这个文件,该文件打开一看就很容易知道要修改的是plugin.version=23.0.0这个,把它改成22就可以了,我改之后加载还真的是可以了,但是一个麻烦的问题又混淆我了,在运行项目的