zoukankan      html  css  js  c++  java
  • linux gcc nginx

    1.安装GCC
    [root@rekfan.com opt]# rpm -ivh cpp-4.1.2-48.el5.i386.rpm
    [root@rekfan.com opt]# rpm -ivh kernel-headers-2.6.18-194.el5.i386.rpm
    [root@rekfan.com opt]# rpm -ivh glibc-headers-2.5-49.i386.rpm
    [root@rekfan.com opt]# rpm -ivh glibc-devel-2.5-49.i386.rpm
    [root@rekfan.com opt]# rpm -ivh libgomp-4.4.0-6.el5.i386.rpm
    [root@rekfan.com opt]# rpm -ivh gcc-4.1.2-48.el5.i386.rpm
    [root@rekfan.com opt]# rpm -ivh pcre-devel-6.6-6.el5.x86_64.rpm

    2.安装nginx
    ./configure --prefix=/usr/local/nginx1.12/ --without-http_gzip_module

    make -f objs/Makefile
    make[1]: Entering directory `/data/source/nginx'
    cd /usr/local/ufo/lib/pcre
    && if [ -f Makefile ]; then make distclean; fi
    && CC="gcc" CFLAGS="-O2 -fomit-frame-pointer -pipe "
    ./configure --disable-shared
    /bin/sh: ./configure: No such file or directory
    make[1]: *** [/usr/local/services/lib/pcre/Makefile] Error 127
    make[1]: Leaving directory `/data/source/nginx-0.7.61'
    make: *** [build] Error 2

    --with-pcre force PCRE library usage
    --with-pcre=DIR set path to PCRE library sources


    3.测试
    [root@rekfan.com opt]# cd /usr/local/nginx1.12/sbin
    [root@localhost sbin]# ./nginx -t
    nginx: the configuration file /usr/local/nginx1.12//conf/nginx.conf syntax is ok
    nginx: configuration file /usr/local/nginx1.12//conf/nginx.conf test is successful

    4. 启动

    [root@rekfan.com opt] ./nginx

      停止nginx : nginx -s stop
     
      重启nginx : nginx -s reload

    5 配置防火墙80端口
    #修改防火墙配置:
    # vi + /etc/sysconfig/iptables
    #添加配置项
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
    #重启防火墙
    # service iptables restart

  • 相关阅读:
    nyoj_216_A problem is easy_201312051117
    nyoj_676_小明的求助_201312042142-2
    C# 堆和栈的区别?
    DataReader和DataSet区别
    SQLSERVER2008R2正确使用索引
    SQL Profiler工具简介
    (转)非常完善的Log4net详细说明
    SQL语句优化技术分析
    HashTable、HashSet和Dictionary的区别
    使用Nuget发布自己的类库包
  • 原文地址:https://www.cnblogs.com/myibm/p/7644601.html
Copyright © 2011-2022 走看看