Nginx
Nginx官网地址:http://nginx.org
Niginx3个版本:
- Mainline version: 是Nginx目前主力研发的版本。
- Stable version: 是最新的稳定版本,主要用在生产环境。
- Legacy version: 稳定的老版本。
源码编译依赖gcc环境,需要安装 gcc、g++包。
部分Nginx模块依赖 zlib、pcre、openssl库,需要安装。
以为安装过程需要root权限,所以选择root用户安装。
1、升级apt-get软件包
sudo apt-get update && sudo apt-get upgrade
2、安装nginx的依赖包 zlib pcre openssl(可以源码安装也可以直接系统安装)
sudo apt-get install libpcre3 libpcre3-dev zlib1g-dev libssl-dev build-essential
3、下载安装openssl源码包
# 下载
wget http://www.openssl.org/source/openssl-1.0.2a.tar.gz
# 解压
sudo tar -zxvf openssl-1.0.2a.tar.gz -C /usr/local/src/
cd /usr/local/src/openssl-1.0.2a/
# 配置
sudo ./config
# 编译安装
sudo make && sudo make instal
4、下载nginx源码包
# 下载版本与地址参考官网:http://nginx.org/en/download.html
wget http://nginx.org/download/nginx-1.8.0.tar.gz
# 解压
sudo tar -zxvf nginx-1.8.0.tar.gz -C /usr/local/src/
cd /usr/local/src/nginx-1.8.0
# 配置
sudo ./configure --prefix=/usr/local/nginx --with-openssl=/usr/include/openssl
# 编译安装
sudo make && sudo make install
配置nginx 开机服务
为改善每次操作易用性,我们设置个nginx系统服务,可以通过service nginx {start|stop|restart|status} 操作。
- 创建服务脚本:
sudo vim /etc/init.d/nginx
#!/bin/sh
### BEGIN INIT INFO
# Provides: nginx
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Short-Description: starts the nginx web server
# Description: starts nginx using start-stop-daemon
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/nginx/sbin
# 设置nginx的启动路径
DAEMON=/usr/local/nginx/sbin
NAME=nginx
DESC=nginx
if [ -f /etc/default/nginx ]; then
. /etc/default/nginx
fi
test -x $DAEMON || exit 0
set -e
. /lib/lsb/init-functions
test_nginx_config() {
if $DAEMON -t $DAEMON_OPTS >/dev/null 2>&1; then
return 0
else
$DAEMON -t $DAEMON_OPTS
return $?
fi
}
case "$1" in
start)
echo -n "Starting $DESC: "
test_nginx_config
if [ -n "$ULIMIT" ]; then
ulimit $ULIMIT
fi
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON -- $DAEMON_OPTS || true
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON || true
echo "$NAME."
;;
restart|force-reload)
echo -n "Restarting $DESC: "
start-stop-daemon --stop --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON || true
sleep 1
test_nginx_config
if [ -n "$ULIMIT" ]; then
ulimit $ULIMIT
fi
start-stop-daemon --start --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
echo "$NAME."
;;
reload)
echo -n "Reloading $DESC configuration: "
test_nginx_config
start-stop-daemon --stop --signal HUP --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON || true
echo "$NAME."
;;
configtest|testconfig)
echo -n "Testing $DESC configuration: "
if test_nginx_config; then
echo "$NAME."
else
exit $?
fi
;;
status)
status_of_proc -p /var/run/$NAME.pid "$DAEMON" nginx && exit 0 || exit $?
;;
*)
echo "Usage: $NAME {start|stop|restart|reload|force-reload|status|configtest}" >&2
exit 1
;;
esac
exit 0
2、设置文件权限并增加到系统服务
sudo chmod +x ./nginx
sudo update-rc.d nginx defaults
3、启动nginx
sudo /etc/init.d/nginx
Nginx简单操作
验证是否安装成功
通过查看nginx的版本信息查看
/usr/local/nginx/sbin/nginx -v
如果安装成功会显示nginx的版本信息,如:
nginx version: nginx/1.8.0
启动Nginx服务
/usr/local/nginx/sbin/nginx
查看Nginx进程信息
ps -ef | grep nginx
启动成功信息如下:
root 5070 1 0 Feb11 ? 00:00:00 nginx: master process ./sbin/nginx
nobody 5071 5070 0 Feb11 ? 00:00:00 nginx: worker process
ubuntu 31032 22629 0 22:44 pts/0 00:00:00 grep nginx
master process 主要读取和评估配置,维护worker process。
worker process数量在配置文件中定义,负责请求的实际处理。Nginx主要基于试讲的模型和依赖操作系统的机制来高效的在worker process之间分配请求。
关闭Nginx服务
停止进程:kill-QUIT 主进程号
快速停止:kill-TERM 主进程号
强行停止:pkill -9 nginx
测试80端口
netstat -ntulp | grep 80
浏览器访问测试
localhost:80 或 ip:80
会显示ngix的欢迎界面
Nginx配置
Nginx安装目录:/usr/local/nginx
环境变量配置
vim /etc/profile
添加Nginx执行文件的路径
export PATH=$PATH:/usr/local/nginx/sbin
使立即生效:source /etc/profile
测试命令:nginx -v
Nginx源码编译配置
使用configure命令配置Nginx各项系统配置,并最终创建一个Makefile文件。
- 查看命令帮助信息
cd /usr/local/src/nginx-1.8.0
./configure --help
其中以--without开头为默认安装选项,以PATH结尾是手动指定依赖库源码目录选项,更详细需要参考官网文档。
- 配置命令
./configure