search
Homephp教程php手册阿里云CentOS 6.3 64位下搭建php运行环境

要安装三个组件 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运行环境





Statement
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
阿里云宣布 2024 云栖大会于 9 月 19 日至 21 日在杭州举办,畅享票免费申请阿里云宣布 2024 云栖大会于 9 月 19 日至 21 日在杭州举办,畅享票免费申请Aug 07, 2024 pm 07:12 PM

本站8月5日消息,阿里云宣布,2024云栖大会将于9月19日~21日在杭州云栖小镇举办,将设三日主论坛、400场分论坛与并行话题以及近四万平方米展区。云栖大会对公众免费开放,即日起公众可以通过云栖大会官网免费申请畅享票,另有5000元的全通票可购买,本站附门票网址:https://yunqi.aliyun.com/2024/ticket-list据介绍,云栖大会起源于2009年,最初命名为第一届中国网站发展论坛,2011年演变成阿里云开发者大会,2015年正式更名为“云栖大会”,至今已连续成功举

centos中ls命令不显示颜色怎么办centos中ls命令不显示颜色怎么办Apr 20, 2022 pm 03:16 PM

方法:1、利用“vim ~/.bashrc”编辑用户目录(~)下的“.bashrc”文件;2、在文件内添加“alias ls="ls --color"”;3、利用“:wq!”命令保存文件内的更改;4、“exit”命令退出终端后重新连接即可。

阿里游戏公司“灵犀互娱”换帅,将由《三国志・战略版》制作人周炳枢接任阿里游戏公司“灵犀互娱”换帅,将由《三国志・战略版》制作人周炳枢接任Mar 13, 2024 pm 07:55 PM

据游戏葡萄报道,阿里旗下游戏公司灵犀互娱的业务负责人詹钟晖(叮当)在一封内部邮件中宣布他和陈伟安将在财年末(3月31日)卸任。他还透露,岗位将由《三国志・战略版》制作人周炳枢(饼叔)接替。邮件内容未公开。各位灵犀小伙伴,灵犀互娱成立七年以来,凭借所有团队成员的共同努力和集团的全力支持,通过一系列优秀作品,在玩家心目中树立了相当的品牌影响力,在行业中也逐渐崭露头角。随着人才梯队日渐完善,灵犀的年轻人们成长迅速,已能担当带领灵犀继续发展的重任。到这个财年末,我和老陈、春娇将正式卸任大班委,交给炳枢带

centos6.5支持uefi吗centos6.5支持uefi吗Apr 26, 2022 pm 04:11 PM

centos6.5支持ueif方式。ueif方式安装方法:1、设置BIOS为禁用CSM,禁用安全启动;2、使用Diskgen将硬盘格式化为GPT格式;3、下载系统并通过光盘安装,将ESP分区建立挂在“/boot/efi”上即可。

centos7自带mysql吗centos7自带mysql吗Apr 26, 2022 pm 03:55 PM

centos7没有自带mysql,自带的数据库是mariadb;安装mysql时,需要先将mariadb卸载掉,因为安装mysql会和mariab产生冲突,可以利用“rpm -e --nodeps mariadb”命令将mariadb卸载。

centos找不到vim命令怎么办centos找不到vim命令怎么办Apr 20, 2022 pm 04:22 PM

方法:1、用“rpm -qa|grep vim”命令查看vim相关信息;2、若显示结果不全,用“yum -y install vim-enhanced”命令安装;3、若没有显示结果,用“yum -y install vim*”命令安装即可。

centos怎么解决安装tomcat后无法访问centos怎么解决安装tomcat后无法访问Apr 20, 2022 pm 05:03 PM

解决方法:1、利用“systemctl start firewalld”开启防火墙;2、检查8080端口有没有开放,若未开启则开启8080端口;3、利用“firewall-cmd --reload”重启防火墙后,再次访问即可成功访问。

centos的32位可以识别多大的内存centos的32位可以识别多大的内存Apr 20, 2022 pm 04:13 PM

centos的32位系统最大可以支持识别4G的内存。提升识别内存的方法:1、安装“kernel-PAE”;2、用“vi /boot/grub/grub.conf”将default的内容由1改成0;3、用reboot重启后即可识别更大内存。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.