# systemctl #输出已激活单元# systemctl list-units #输出已激活单元# systemctl --failed #输出运行失败的单元# systemctl list-unit-files #查看所有已安装服务# systemctl start nginx #启动ngi ...
分类:
其他好文 时间:
2016-07-01 11:35:20
阅读次数:
109
安装nginx的yum源 官网:http://nginx.org/en/linux_packages.html#stable yum源:http://nginx.org/packages 安装yum源 安装Nginx 启动Nginx ...
分类:
其他好文 时间:
2016-06-23 06:30:09
阅读次数:
119
操作环境是Windows 一、nginx命令:启动nginx 在Windows上安装好nginx后,我们需要启动nginx服务,启动nginx服务的命令行操作主要有两种方式,即 cd D:\opensource\nginx-1.10.1 nginx.exe 或者 cd D:\opensource\n ...
分类:
其他好文 时间:
2016-06-22 10:27:58
阅读次数:
138
1、首先从官网下载nginx文件http://nginx.org/en/download.html 2、在命令行下输入start nginx 启动 看下配置文件的端口配置 默认是80 检查是否被占用 3、配置文件nginx.conf 4、常用命令: 启动:start nginx 停止:nginx.e ...
分类:
其他好文 时间:
2016-06-17 19:25:23
阅读次数:
131
#定义Nginx运行的用户#user nobody;#nginx启动进程数,建议设置为等于CPU总核心数。worker_processes 1;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]#error_log logs/err ...
分类:
其他好文 时间:
2016-06-16 20:17:13
阅读次数:
189
nginx是个多进程web容器,不同的配置下它的启动方式也是不同的,这里我只说说最典型的启动方式。 它有1个master进程,和多个worker进程(最优配置的数量与CPU核数相关)。那么,首先我们要找到main函数,它在src/core/nginx.c文件中。谈到源码了,这时我们先简单看下源码的目 ...
分类:
其他好文 时间:
2016-06-09 22:11:37
阅读次数:
146
一.nginx.conf①vim/usr/local/nginx/conf/nginx.conf//清空原来的配置,加入如下内容:usernobodynobody;worker_processes2;error_log/usr/local/nginx/logs/nginx_error.logcrit;pid/usr/local/nginx/logs/nginx.pid;worker_rlimit_nofile51200;events{useepoll;worker_conne..
分类:
其他好文 时间:
2016-06-08 17:16:20
阅读次数:
255
之前一篇文章大致的介绍过,nginx的基本使用。这篇文章的目的在于更细化的讲解nginx的一些基本使用,以及实际操作。nginx概述请参阅nginx入门 nginx的基本使用 1.nginx的启动 其中参数-c指定nginx启动时加载的配置文件,当然也可以不指定配置文件,省略-c,也可以启动,表示使 ...
分类:
其他好文 时间:
2016-06-03 01:02:12
阅读次数:
142
1、yum安装nginx yum install nginx 2、启动nginx chkconfig nginx on service nginx start向web服务器中放入测试文件: [html] view plain copy print? <html> <head> <title>Welc ...
分类:
其他好文 时间:
2016-05-28 21:51:07
阅读次数:
398
1、配置启动脚本vim/etc/init.d/nginx写入如下内容#!/bin/bash
#chkconfig:-3021
#description:httpservice.
#SourceFunctionLibrary
./etc/init.d/functions
#NginxSettings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_..
分类:
其他好文 时间:
2016-05-28 14:29:13
阅读次数:
197