1、首先添加组groupadd-rnginxuseradd-gnginx-rnginx2、解压源码包:tarxfnginx-1.6.3.tar.gzcdnginx-1.6.3./configure--prefix=/usr/local/nginx--conf-path=/etc/nginx/nginx.conf--user=nginx--group=nginx--error-log-path=/var/log/nginx/error.log--http-log-path=/var/l..
分类:
其他好文 时间:
2017-07-21 15:35:10
阅读次数:
125
废话少说,直接部署一、配置防火墙,开启80端口、3306端口CentOS7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。1、关闭firewall:systemctlstopfirewalld.service#停止firewallsystemctldisablefirewalld.service#禁止firewall开机启动rm‘/etc/systemd/system/d..
分类:
数据库 时间:
2017-07-20 22:25:03
阅读次数:
210
centos7编译安装nginx:首先确保系统上存在编译安装使用的必要工具运行:#yumgroupinstall"developmenttools""serverplatformdevelopment"1下载PCREversion4.4—8.40(ngx_http_rewrite_module模块需要)#wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.t..
分类:
其他好文 时间:
2017-07-20 22:10:46
阅读次数:
207
#!/bin/bash#Date:2017-05-05ByAllen_Jol#---------YUmInstallrelatedcomponents------sleep3yuminstall-yyum-yinstallmakegccgcc-c++cmakeopensslopenssl-develzlibzlib-develmkdir-p/usr/local/nginxmkdir/lnmpsoftwarecd/lnmpsoftware#-----------------DownloadNginx------..
分类:
其他好文 时间:
2017-07-13 19:05:48
阅读次数:
150
nginx编译参数说明如下: --prefix=<path> -- 安装路径,如果没有指定,默认为/usr/local/nginx。--sbin-path=<path> -- nginx可执行命令的文件,如果没有指定,默认为<prefix>/sbin/nginx。--conf-path=<path> ...
分类:
其他好文 时间:
2017-07-10 16:40:53
阅读次数:
168
参考:http://www.nginx.cn/install 也不知道我的系统是否有这些依赖包,试试吧?缺少哪些我就装哪些吧,多踏点坑总是能学到点东西的. 获取nginx包 http://nginx.org/en/download.html configure --sbin-path=/user/l ...
分类:
其他好文 时间:
2017-07-03 23:56:19
阅读次数:
321
今天下载了个nginx,编译安装之后,无法启动,以前的启动方法无法实现(services nginx start), 在网上找了半天,才找到一个方法,与大家分享: 命令如下: 启动:/usr/local/nginx/sbin/nginx 关闭:/usr/local/nginx/sbin/nginx ...
分类:
其他好文 时间:
2017-06-22 00:22:23
阅读次数:
139
(1)下载nginx[root@LNMP~]#cd/usr/local/src/[root@LNMPsrc]#wgethttp://nginx.org/download/nginx-1.4.4.tar.gz(2)解压Nginx[root@LNMPsrc]#tarzxvfnginx-1.4.4.tar.gz(3)配置编译参数[root@LNMPsrc]#cdnginx-1.4.4[root@LNMPnginx-1.4.4]#./configure--prefix=/usr/loc..
分类:
其他好文 时间:
2017-06-15 00:32:54
阅读次数:
221
nginx是一个web网站常用的高性能http和反向代理服务器,其具有较好的并发能力,被网易、百度、腾讯、新浪等网站广泛使用。 一、 理论简介 1.首先弄清楚正向代理和反向代理 正向代理:代理客户端,替客户端收发请求,使真实的客户端对服务器不可见。如图所示,proxy和client同属于一个网络,对 ...
分类:
其他好文 时间:
2017-06-14 16:18:15
阅读次数:
220
下面代码可能须要一定的c/c++基础。 须要有一些函数指针的知识 深度剖析函数指针点击这里 common.h #pragma once typedef int (*pt)(void); void init_2(); 2.cpp #include <iostream> #include "common ...
分类:
其他好文 时间:
2017-05-28 17:24:25
阅读次数:
179