热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

CentOS6.4系统安装配置Nginx1.2.4+PHP5.3.17+MySQL高性能web

1.安装操作系统附:CentOS6.3下载地址32位:http://mirror.centos.org/centos/6.3/isos/i386/CentOS-6.3-i386-bin-DVD1to2.torrent64位:http://mirror.centos.org/centos/6.3/isos/x86_64/

1.安装操作系统

附:CentOS 6.3下载地址

32位:http://mirror.centos.org/centos/6.3/isos/i386/CentOS-6.3-i386-bin-DVD1to2.torrent

64位:http://mirror.centos.org/centos/6.3/isos/x86_64/CentOS-6.3-x86_64-bin-DVD1to2.torrent

说明:

1、CentOS 6.3系统镜像有两个,安装系统只用到第一个镜像即CentOS-6.3-i386-bin-DVD1.iso(32位)或者CentOS-6.3-x86_64-bin-DVD1.iso(64位),第二个镜像是系统自带软件安装包

2、安装CentOS 6.3系统的计算机内存必须等于或者大于628M(最小内存628M),才能启用图形安装模式

3、CentOS 6.3文本安装模式不支持自定义分区,建议使用图形安装模式安装

4、CentOS 6.3的系统安装方式分为:图形安装模式和文本安装模式

5、CentOS 6.3的系统运行方式分为:带图形界面、可以用鼠标操作的图形化方式和不带图形界面、直接用命令行操作的文本方式(具体的系统运行方式,可以在系统安装的过程中自定义选择)

2.升级操作系统

安装完毕后,按照实际网络环境配置IP 网关 DNS等,确认可以正常访问公网后,命令行执行yum -y update升级操作系统。

1.安装nginx第三方更新源

根据操作系统从上面下载正确的release rpm包,将rpm上传到服务器,使用root用户命令行终端执行rpm -ivh nginx-release-centos-6-0.el6.ngx.noarch.rpm (根据实际安装包名称修改rpm名)

2.安装nginx

使用root用户登录服务器,在命令行终端执行yum -y install nginx

3.配置nginx

配置/etc/nginx/nginx.conf(此处可配置优化参数)

参考如下:

#######################################################################
#
# This is the main Nginx configuration file.
#
# More information about the configuration options is available on
# * the English wiki ? http://wiki.nginx.org/Main
# * the Russian documentation ? http://sysoev.ru/nginx/
#
#######################################################################

#———————————————————————-
# Main Module ? directives that cover basic functionality
#
# http://wiki.nginx.org/NginxHttpMainModule
#
#———————————————————————-

user nginx;
worker_processes 2;

error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;

pid /var/run/nginx.pid;
worker_rlimit_nofile 65535;
#———————————————————————-
# Events Module
#
# http://wiki.nginx.org/NginxHttpEventsModule
#
#———————————————————————-

events {
use epoll;
worker_connections 65535;
}
#———————————————————————-
# HTTP Core Module
#
# http://wiki.nginx.org/NginxHttpCoreModule
#
#———————————————————————-

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
charset utf-8;
log_format main ‘$remote_addr ? $remote_user [$time_local] “$request” ‘
‘$status $body_bytes_sent “$http_referer” ‘
‘”$http_user_agent” “$http_x_forwarded_for”‘;
server_names_hash_bucket_size 128;
client_header_buffer_size 16k;
large_client_header_buffers 4 16k;
client_max_body_size 8m;

sendfile on;
tcp_nopush on;

keepalive_timeout 60;

tcp_nodelay on;

#以下为php fastcgi优化配置
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
fastcgi_temp_path /usr/share/nginx;
fastcgi_cache_path /usr/share/nginx/ngx_fcgi_cache levels=2:2 keys_zOne=ngx_fcgi_cache:128m inactive=1d max_size=256m;
fastcgi_cache_valid 200 301 302 1d;
fastcgi_cache_use_stale error timeout invalid_header http_500;
fastcgi_cache_key $request_method://$host$request_uri;
fastcgi_cache ngx_fcgi_cache;
open_file_cache max=65535 inactive=20s;
open_file_cache_min_uses 1;
open_file_cache_valid 30s;

#以下为gzip优化配置
gzip on;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_types text/plain application/xhtml+xml text/css application/xml application/xml+rss text/Javascript application/Javascript application/x-javascr$
gzip_proxied any;
gzip_disable “MSIE [1-6]\.”;
# Load config files from the /etc/nginx/conf.d directory
# The default server is in conf.d/default.conf
include /etc/nginx/conf.d/*.conf;

}

配置/etc/nginx/conf.d/default.conf

参考如下:

server {
listen 80;
server_name test.com ;
root /usr/share/nginx/html;
index index.html index.php;
# autoindex on;
access_log off;

#以下为nginx rewrite策略
location / {
if ( $args ~ “mosConfig_[a-zA-Z_]{1,21}(=|\%3d)” ) {
set $args “”;
rewrite ^.*$ http://$host/index.php last;
return 403;}

if ( $args ~ “base64_encode.*\(.*\)”) {
set $args “”;
rewrite ^.*$ http://$host/index.php last;
return 403;}

if ( $args ~ “(\<|%3C).*script.*(\>|%3E)”) {
set $args “”;
rewrite ^.*$ http://$host/index.php last;
return 403;}

if ( $args ~ “GLOBALS(=|\[|\%[0-9A-Z]{0,2})”) {
set $args “”;
rewrite ^.*$ http://$host/index.php last;
return 403;}

if ( $args ~ “_REQUEST(=|\[|\%[0-9A-Z]{0,2})”) {
set $args “”;
rewrite ^.*$ http://$host/index.php last;
return 403;}

if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;}
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#以下为nginx php处理策略
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}

#以下为提高访问速度缓存机制
location ~ .*\.(ico|flv||gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}
# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
location ~ /\.ht {
deny all;
}
}

1.安装第三方更新源

使用root登录服务器后,在命令行终端执行yum -y install yum-priorities升级yum

然后执行以下命令加载第三方源

rpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-7.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

(注意以上文件均为centos 6 对应版本,其他版本操作系统可访问相应网站自行查找)

2.安装php

yum ?enablerepo=remi install php php-fpm php-cli php-pdo php-mysql php-mcrypt php-mbstring php-gd php-tidy php-xml php-xmlrpc php-pear php-devel

注意本方法安装的php为官方最新稳定版本

3.安装php加速模块memcache和eaccelerator

yum ?enablerepo=remi install  php-pecl-memcache php-eaccelerator

4.配置PHP

php配置文件默认为/etc/php.ini php-fpm.conf以及/etc/php.d和/etc/php-fpm.d目录下的所有文件

正常情况下无需更改默认配置

只更改/etc/php-fpm.d/www.conf内的以下字段即可

user = nginx
group = nginx

1.安装mysql

使用root登录服务器后,在命令行终端执行 yum -y install mysql mysql-server

在nginx网站root目录 默认为/usr/share/nginx/html

在该目录下使用命令行终端执行vi index.php

然后按键盘i键 输入以下内容:

session_start();

$_SESSION['time'] =date(“Y:m:d:H:s”,time());

echo “time”.””.$_SESSION['time'].””.”
”;

echo “realserver ip address”.””.$_SERVER['SERVER_ADDR'].””.”
”;

echo “local address”.””.$_SERVER['SERVER_NAME'].””.”
”;

echo “SESSIONNAME”.””.session_name().””.”
”;

echo “SESSIONID”.””.session_id().””.”
”;

phpinfo();
?>

然后按键盘:wq保存退出

使用浏览器访问网站,如果可以正常显示当前session信息和phpinfo信息,说明正常。

如果提示404等无法访问页面或者访问页面不存在、以及直接显示源代码表示php异常,请确认nginx配置中的root参数目录路径是否正确。


推荐阅读
  • 本文介绍了多种Eclipse插件,包括XML Schema Infoset Model (XSD)、Graphical Editing Framework (GEF)、Eclipse Modeling Framework (EMF)等,涵盖了从Web开发到图形界面编辑的多个方面。 ... [详细]
  • 我的读书清单(持续更新)201705311.《一千零一夜》2006(四五年级)2.《中华上下五千年》2008(初一)3.《鲁滨孙漂流记》2008(初二)4.《钢铁是怎样炼成的》20 ... [详细]
  • 本文详细探讨了在Web开发中常见的UTF-8编码问题及其解决方案,包括HTML页面、PHP脚本、MySQL数据库以及JavaScript和Flash应用中的乱码问题。 ... [详细]
  • 深入解析Android Activity生命周期
    本文详细探讨了Android中Activity的生命周期,通过实例代码和详细的步骤说明,帮助开发者更好地理解和掌握Activity各个阶段的行为。 ... [详细]
  • 深入探讨Web服务器与动态语言的交互机制:CGI、FastCGI与PHP-FPM
    本文详细解析了Web服务器(如Apache、Nginx等)与动态语言(如PHP)之间通过CGI、FastCGI及PHP-FPM进行交互的具体过程,旨在帮助开发者更好地理解这些技术背后的原理。 ... [详细]
  • 本文介绍了如何处理MySQL数据库中表 'xdb.auditlog' 被标记为已损坏的问题,并提供了解决方案。 ... [详细]
  • BeautifulSoup4 是一个功能强大的HTML和XML解析库,它能够帮助开发者轻松地从网页中提取信息。本文将介绍BeautifulSoup4的基本功能、安装方法、与其他解析工具的对比以及简单的使用示例。 ... [详细]
  • Awk是一款功能强大的文本分析与处理工具,尤其在数据解析和报告生成方面表现突出。它通过读取由换行符分隔的记录,并按照指定的字段分隔符来划分和处理这些记录,从而实现复杂的数据操作。 ... [详细]
  • 随着Linux操作系统的广泛使用,确保用户账户及系统安全变得尤为重要。用户密码的复杂性直接关系到系统的整体安全性。本文将详细介绍如何在CentOS服务器上自定义密码规则,以增强系统的安全性。 ... [详细]
  • 为何Compose与Swarm之后仍有Kubernetes的诞生?
    探讨在已有Compose和Swarm的情况下,Kubernetes是如何以其独特的设计理念和技术优势脱颖而出,成为容器编排领域的领航者。 ... [详细]
  • 本文详细介绍了在Windows系统中如何配置Nginx以实现高效的缓存加速功能,包括关键的配置文件设置和示例代码。 ... [详细]
  • 本文通过具体示例详细介绍了 Python 中的装饰器和装饰类的使用方法,包括带参数的装饰器和装饰类的应用场景。 ... [详细]
  • 在使用 Nginx 作为服务器时,发现 Chrome 能正确从缓存中读取 CSS 和 JS 文件,而 Firefox 却无法有效利用缓存,导致加载速度显著变慢。 ... [详细]
  • LNMP流程图nginxPHPMysqlNginxFastcgi_pass<-FastCGI->fastcgi-(php-fpm)<->wrapperPhp ... [详细]
  • 本文探讨了在Windows系统中运行Apache服务器时频繁出现崩溃的问题,并提供了多种可能的解决方案和建议。错误日志显示多个子进程因达到最大请求限制而退出。 ... [详细]
author-avatar
多米音乐_34324431
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有