关于Apache的配置请先参考博文 Apache配置
本文假设我们已经配置好了一个基本的Apache服务器,接下我们就要配置如何通过CGI脚本(UNIX shell、Perl、PHP、Python等脚本语言写成的程序)去实现一个网站的后端数据库连接及简单操作
1. PHP实现
1.1. 在安装好的Apache服务其中安装配置php环境
yum install php -y
php的配置文件就不翻译了
[root@lockey html]# cat /etc/httpd/conf.d/php.conf
#
# Cause the PHP interpreter to handle files with a .php extension.
#
<FilesMatch \.php$>
SetHandler application/x-httpd-php
#在文件扩展名与特定的处理器之间建立映射
</FilesMatch>
#
# Allow php to handle Multiviews
#
AddType text/html .php
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
#
# Uncomment the following lines to allow PHP to pretty-print .phps
# files as PHP source code:
#
#<FilesMatch \.phps$>
# SetHandler application/x-httpd-php-source
#</FilesMatch>
#
# Apache specific PHP configuration options
# those can be override in each configured vhost
#
php_value session.save_handler "files"
php_value session.save_path "/var/lib/php/session"
[root@lockey html]#
1.2. 安装php的数据库支持:
[root@lockey conf.d]# yum install -y php-mysql
注意:
注意当web服务器连接的数据库在远程时,需要改变Selinux:
# setsebool -P httpd_can_network_connect_db=1
# setsebool -P httpd_can_network_connect=1 (如果数据库的端口不是3306时,需要改此项)
重启httpd服务后,测试网页是否访问正常.
在网站根目录下建立一个php脚本文件(例如halo.php)
[root@lockey html]# cat halo.php
<?php
echo "This is a test for PHP script!";
?>
[root@lockey html]#
1.3. 测试数据库连接
例如我们在网站根目录下建立了一个文件index.php
[root@lockey html]# cat index.php
<?php
$servername = "localhost";
$username = "root";
$password =