赞
踩
Nginx 可以在大多数 Unix Linux OS 上编译运行,并有 Windows 移植版。 Nginx 的1.20.0稳定版已经于2021年4月20日发布,一般情况下,对于新建站点,建议使用最新稳定版作为生产版本,已有站点的升级急迫性不高。
Nginx 是一个很强大的高性能Web和反向代理服务,它具有很多非常优越的特性:
在连接高并发的情况下,Nginx是Apache服务不错的替代品:能够支持高达 50,000 个并发连接数的响应
Nginx作为负载均衡服务:Nginx 既可以在内部直接支持 Rails 和 PHP 程序对外进行服务,也可以支持作为 HTTP代理服务对外进行服务。
官网下载地址:http://nginx.org/en/download.html
当前安装包,一般选择稳定版本:nginx-1.20.2.tar.gz
安装相关依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
开始编译安装
# 切换目录 cd /usr/local/src/ # 下载安装包 wget http://nginx.org/download/nginx-1.20.2.tar.gz # 解压安装包 tar -zxvf nginx-1.20.2.tar.gz # 进入解压后的源码包 cd nginx-1.20.2 # 预编译 # 默认安装目录 /usr/local/nginx ./configure --with-http_ssl_module #启用SSL模块 # 编译安装 make make install
预编译参数:
# 添加环境变量,编辑 /etc/profile 文件
vim /etc/profile
# 此处为编辑内容,末尾处添加
# 若存在多个环境变量则用 : 分隔
# 如:PATH=$PATH:/usr/local/php-7.4.27/bin:/usr/local/nginx/sbin
PATH=$PATH:/usr/local/nginx/sbin
export PATH
# 让环境变量生效
source /etc/profile
Nginx 相关命令
# 查看 Nginx 版本号
nginx -v
# 查看 Nginx 已经加载的模块
nginx -V
# 验证 Nginx 配置文件是否正确
nginx -t
# 启动 Nginx:
# -c 配置文件 表示根据指定文件启动,如果该配置文件和安装的nginx不是一个版本,会报错
nginx -c /usr/local/nginx/conf/nginx.conf
# 配置文件变化后重新加载配置文件并重启 Nginx 服务
nginx -s reload
配置 Nginx 开机启动,将 Nginx 添加至 service 服务
在 /etc/init.d 下创建文件 nginx,其内容参考nginx官方文档 Red Hat NGINX Init Script
#!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/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执行程序的路径 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) # 修改成nginx.conf文件的路径 NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx make_dirs() { # make required directories user=`$nginx -V 2>&1 | grep "configure arguments:.*--user=" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` if [ -n "$user" ]; then if [ -z "`grep $user /etc/passwd`" ]; then useradd -M -s /bin/nologin $user fi options=`$nginx -V 2>&1 | grep 'configure arguments:'` for opt in $options; do if [ `echo $opt | grep '.*-temp-path'` ]; then value=`echo $opt | cut -d "=" -f 2` if [ ! -d "$value" ]; then # echo "creating" $value mkdir -p $value && chown -R $user $value fi fi done fi } start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 make_dirs 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 sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $prog -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 a+x /etc/init.d/nginx
# 添加系统服务
chkconfig --add nginx
# 开启服务
chkconfig nginx on
# 查看是否添加成功
chkconfig --list nginx
Nginx service 相关命令
# 启动
service nginx start
# 停止
service nginx stop
# 服务状态
service nginx status
# 重启
service nginx restart
报错处理
启动 nginx 服务报错 pid 文件无法读取到:
修改 /usr/local/nginx/conf/nginx.conf 配置文件中的 pid 文件路径为其报错路径:
更改完后,重新执行启动命令,没有报任何错误,启动正常。如果启动还是报错,可以将nginx服务先kill掉,再重新启动nginx服务
浏览器访问服务器IP地址:
若无法访问请查看服务器防火墙 80 端口 是否开放
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。