Heim  >  Artikel  >  php教程  >  阿里云CentOS 6.3 64位下搭建php运行环境

阿里云CentOS 6.3 64位下搭建php运行环境

WBOY
WBOYOriginal
2016-06-06 20:00:191398Durchsuche

要安装三个组件 Apache组件httpd、php、Zend Guard Loader(Zend Optimizer 在php5.3.x之后都换成了Zend Guard Loader) 1. 使用最新版的Centos 6.3 里已默认安装好Apache服务组件httpd。 2.Centos 6.3 默认下没有安装php组件,因此我们需要输入命令:yum -y

要安装三个组件 Apache组件httpd、php、Zend Guard Loader(ZendOptimizer在php5.3.x之后都换成了Zend Guard Loader)



1.使用最新版的Centos 6.3 里已默认安装好Apache服务组件httpd。

2.Centos 6.3 默认下没有安装php组件,因此我们需要输入命令:yum -y install php 回车如下图

阿里云CentOS 6.3 64位下搭建php运行环境

使用 rpm -ql php命令查看安装好的php组件,如图:

阿里云CentOS 6.3 64位下搭建php运行环境


3.从http://www.zend.com/en/products/guard/downloads下载ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz

文件解压后里面有一个ZendGuardLoader.so文件,将此文件上传到/usr/lib64/httpd/modules/目录下面,然后配置php.ini,

使用命令 vi /etc/php.ini,在文件末尾加入

;[Zend Guardrd Loader]
zend_extension=/usr/lib64/httpd/modules/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=


4修改httpd.conf文件,使用命令vi /etc/httpd/conf/httpd.conf

找到ServerTokens OS 将“OS”改为“Prod “


到此,php运行环境就安装完成了。


5输入命令:vi /var/www/html/test.php 在弹出的对话框里输入信息:

phpinfo();
?>
保存退出。
然后通过你的浏览器输入:http://127.0.0.1/test.php
如出现下图界面,恭喜里php运行环境你配置成功啦。


阿里云CentOS 6.3 64位下搭建php运行环境阿里云CentOS 6.3 64位下搭建php运行环境





Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn