CentOS5.8编译安装Nginx1.2.7

一、安装nginx相对较为简单,安装前确认已经安装了pcre,可通过rpm -q pcre查看本机安装版本。一般安装即可。若无安装直接yum install pcre安装下。

二、下载当前稳定版1.2.7

cd /tmp

wget http://nginx.org/download/nginx-1.2.7.tar.gz

tar -xvf nginx-1.2.7.tar.gz

cd nginx-1.2.7

三、正式安装

点击(此处)折叠或打开

  1. #安装Nginx
  2. tar -zxvf nginx-1.2.7.tar.gz
  3. cd nginx-1.2.7
  4. ./configure --user=www --group=www
    \
  5. --prefix=/usr/local/nginx
    \
  6. --sbin-path=/usr/local/nginx/sbin/nginx
    \
  7. --conf-path=/usr/local/nginx/conf/nginx.conf
    \
  8. --with-http_stub_status_module \
  9. --with-http_ssl_module \
  10. --with-pcre \
  11. --lock-path=/var/run/nginx.lock \
  12. --pid-path=/var/run/nginx.pid
  13. 编译完成没错误后,执行以下命令
  14. make && make install && cd ../

四、更改nginx配置信息

点击(此处)折叠或打开

  1. #更改配置
  2. vi /usr/local/nginx/conf/nginx.conf
  3. #修改一些参数,别直接替换文件,这只是一部分
  4. user www
  5. events {
  6. use epoll;
  7. worker_connections 1024;
  8. }
  9. listen 80;
  10. server_name localhost;
  11. index    index.html index.htm index.php;
  12. root      /var/www/html;
  13. location ~ .*\.(php|php5)?$ {
  14. fastcgi_pass 127.0.0.1:9000;
  15. fastcgi_index index.php;
  16. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  17. include fastcgi_params;
  18. }
  19. #注意这里
  20. #$document_root$fastcgi_script_name;
  21. #检测配置文件
  22. /usr/local/nginx/sbin/nginx -t
  23. #提示表示成功
  24. #nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax
    is ok
  25. #nginx: configuration file /usr/local/nginx/conf/nginx.conf test is
    successful
  26. #开启Nginx
  27. /usr/local/nginx/sbin/nginx
  28. #平滑重启Nginx
  29. /usr/local/nginx/sbin/nginx -s reload
  30. #添加开机启动
  31. vi /etc/rc.d/rc.local
  32. #最后一行加入
  33. /usr/local/nginx/sbin/nginx &

五、测试nginx及php是否可用

点击(此处)折叠或打开

  1. vi /var/www/html/index.php
  2. #新建index文件,输入
  3. <?php
  4. phpinfo();
  5. ?>

如果出现phpinfo界面,查看显示信息无异常,说明nginx跟php配置都成功。

这样就完成了nginx的安装配置。下一步就该进行zend安装了。

cd打开淘宝销量排行榜,有好的建议可提供~

时间: 2024-11-03 03:33:59

CentOS5.8编译安装Nginx1.2.7的相关文章

二、Ubuntu下编译安装Nginx1.8.0

    在Ubuntu下搭建LNMP环境.编译安装mysql,nginx,php.最后在LNMP前提下安装composer,并且安装laravel框架.首先,第二步开始编译安装Nginx1.8.0 1.先进入"/usr/local/src"文件夹中,接着键入 "sudo wget http://nginx.org/download/nginx-1.8.0.tar.gz"回车,等待下载完毕.下载完毕后,执行"sudo tar zxvf nginx-1.8.0

CentOS 7.1编译安装Nginx1.8.1+MySQL5.6.19+PHP5.5.14

废话少说,直接部署 一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 rm '/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.se

一、Centos6.7编译安装Nginx1.81

声明:本系列教程由马哥教育提供指导: Centos6.7编译安装Nginx1.81 +mysql-5.5.33 + php-5.5 1.nginx简介: Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行.由俄罗斯的程序设计师Igor Sysoev所开发,供俄国大型的入口网站及搜索引擎Rambler(俄文:Рамблер)使用.其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表

CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14

转载自http://www.osyunwei.com/archives/7891.html 准备篇: CentOS 7.0系统安装配置图解教程 http://www.osyunwei.com/archives/7829.html 一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemc

基于CentOS6.5环境之下的LNMP之编译安装Nginx1.8.0 stable(稳定版)

LNMP之编译安装Nginx1.8.0 stable(稳定版) 1.yum安装nginx所欲要的生存环境,也就是库文件 yum -y install make gcc gcc-c++ glibc glibc-devel automake autoconf libtool make 2.给nginx添加系统用户 useradd -s /sbin/nologin -M -r nginx 3.解压安装nginx1.8.0 tar xf nginx-1.8.0.tar.gz  cd nginx-1.8.

CentOS 6.2编译安装Nginx1.2.0+MySQL5.5.25+PHP5.3.13

CentOS 6.2编译安装Nginx1.2.0+MySQL5.5.25+PHP5.3.132013-10-24 15:31:12标签:服务器 防火墙 file 配置文件 written 一.配置好IP.DNS .网关,确保使用远程连接工具能够连接服务器 二.配置防火墙,开启80端口.3306端口1    vi/etc/sysconfig/iptables #编辑防火墙配置文件1    -A INPUT -m state --state NEW -m tcp -p tcp --dport 80

CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14方法分享

一.配置防火墙,开启80端口.3306端口CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙.1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/ipta

CentOS 6.6编译安装Nginx1.6.2+MySQL5.6.21+PHP5.6.3

准备篇: CentOS 6.6系统安装配置图解教程 http://www.osyunwei.com/archives/8398.html 一.配置防火墙,开启80端口.3306端口 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filte

CentOS 7.x编译安装Nginx1.10.3+MySQL5.7.16+PHP5.2 5.3 5.4 5.5 5.6 7.0 7.1多版本全能环境

准备篇 一.防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑