博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx安装与配置
阅读量:6758 次
发布时间:2019-06-26

本文共 2444 字,大约阅读时间需要 8 分钟。

对于centos,

首先,安装一些依赖:

yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel

1创建并进入安装包存放目录

mkdir nginx-src && cd nginx-src

2 wget下载 nginx1.7 

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

3 解压  

tar xzf nginx-1.7.3.tar.gz

4 进入并编译安装   

cd nginx-1.7.3  

 ./configure  

 make  

 make install  

5 nginx默认安装在/usr/local/nginx目录下

 whereis nginx  

  1. nginx: /usr/local/nginx 

 

6.管理Nginx

启动:/usr/local/nginx/sbin/nginx 

nginx -s signal
  • stop — fast shutdown
  • quit — graceful shutdown
  • reload — reloading the configuration file
  • reopen — reopening the log files

停止:nginx -s stop/quit

重新加载:nginx -s reload

当然也可以将nginx 加入系统服务

在/etc/init.d/目录下创建如下内容的nginx脚本

#!/bin/sh

#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /usr/local/nginx/conf/nginx.conf
# pidfile: /usr/local/nginx/logs/nginx.pid

# Source function library.

. /etc/rc.d/init.d/functions

# Source networking configuration.

. /etc/sysconfig/network

# Check that networking is up.

[ "$NETWORKING" = "no" ] && exit 0

nginx="/usr/local/nginx/sbin/nginx"

prog=$(basename $nginx)

NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"

lockfile=/var/lock/subsys/nginx

start() {

[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}

stop() {

echo -n $"Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}

restart() {

configtest || return $?
stop
start
}

reload() {

configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}

force_reload() {

restart
}

configtest() {

$nginx -t -c $NGINX_CONF_FILE
}

rh_status() {

status $prog
}

rh_status_q() {

rh_status >/dev/null 2>&1
}

case "$1" in

start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac

赋予其可执行权限:

chmod +x 

chkconfig --add nginx

之后就可使用service nginx start/stop/restart/reload/status管理nginx.

 访问 http://ip:80,如果出现如下欢迎页则一切成功,否则查看防火墙是否关闭或者拦截了80端口。

 

转载于:https://www.cnblogs.com/itdev/p/7004453.html

你可能感兴趣的文章
嵌入式第八次
查看>>
设计模式学习之一:设计模式的设计原则
查看>>
Codeforces 798A - Mike and palindrome
查看>>
算法笔记--拓扑排序
查看>>
Chapter 6、字符串(二)(1st,Mar.)
查看>>
4-3 求链式表的表长 (10分)
查看>>
[BZOJ 1491][NOI2007]社交网络(Floyd)
查看>>
libtool failed with exit code 1
查看>>
# 学号 2017-2018-20172309 《程序设计与数据结构》实验1报告
查看>>
OrderOnline——数据库设计(已更新)
查看>>
(四)虚拟存储管理器的页面调度
查看>>
python中的StringIO模块
查看>>
玩转Windows CPU占用时间 ——编程之美 读书笔记1.1
查看>>
苹果官方的图标大小的调整
查看>>
Maven整理
查看>>
观《构建之法》有感
查看>>
maven环境快速搭建(转)
查看>>
Cacti监控mysql数据库服务器实现过程
查看>>
Python高级编程–正则表达式(习题)
查看>>
HDU 5742 It's All In The Mind
查看>>