三、安装PHP5
接下来到PHP的安装了:
1、安装PHP5
yum install php
输入以上指令后,根据提示输入Y直到安装完成
2、需要安装PHP的相关组件,使PHP5支持 MySQL
yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt php-devel
直接在vim中执行以上指令根据提示输入Y回车,安装相应的组件
安装好后重启Mysql
/etc/init.d/mysqld restart #重启MySql
重启Apache
/etc/init.d/httpd restart #重启Apche
按照以上介绍的步骤,安装了apache、PHP、Mysql,接下来就要进行配置了:
配置Apache
1.vim中打开httpd.conf
输入指令:vi /etc/httpd/conf/httpd.conf
按下回车键,执行查找:
/ ServerTokens OS
找到后,按下键盘上的’i‘,进入编辑模式,将其修改为:ServerTokens Prod (在出现错误页的时候不显示服务器操作系统的名称)
修改后,按下‘esc’,退出编辑模式,使用同样的操作方式查找并修改以下配置项(不适用查找功能,也可以一句一句阅读查找,要在vim中显示行号,输入:set nu):
ServerSignature On 在536行 修改为:ServerSignature Off (在错误页中不显示Apache的版本)
Options Indexes FollowSymLinks 在331行 修改为:Options Includes ExecCGI FollowSymLinks(允许服务器执行CGI及SSI,禁止列出目录)
#AddHandler cgi-script .cgi 在796行 修改为:AddHandler cgi-script .cgi .pl (允许扩展名为.pl的CGI脚本运行)
AllowOverride None 在338行 修改为:AllowOverride All (允许.htaccess)
AddDefaultCharset UTF-8 在759行 修改为:AddDefaultCharset GB2312 (添加GB2312为默认编码)
Options Indexes MultiViews FollowSymLinks 在554行 修改为 Options MultiViews FollowSymLinks(不在浏览器上显示树状目录结构)
DirectoryIndex index.html index.html.var 在402行 修改为:DirectoryIndex index.html index.htm Default.html Default.htm
index.php Default.php index.html.var (设置默认首页文件,增加index.php)
KeepAlive Off 在76行 修改为:KeepAlive On (允许程序性联机)
MaxKeepAliveRequests 100 在83行 修改为:MaxKeepAliveRequests 1000 (增加同时连接数)
修改完后,如何在编辑模式,按下‘esc’,直接输入以下指令
:wq! #保存退出
/etc/init.d/httpd restart #重启
rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html #删除默认测试页
本文版权所有,转载须注明:来源 https://www.qvdv.net/qvdv-zhuji-662.html