Linux学习--编译安装nginx
Posted 丢爸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux学习--编译安装nginx相关的知识,希望对你有一定的参考价值。
本文基于CentOS6.10
- 安装pcre-devel
- 如开启了openssl-devel,则需安装openssl-devel包【yum install openssl-devel -y】
编译安装nginx常用配置项介绍
- 属性
–prefix=:nginx安装路径。不指定,则默认为 /usr/local/nginx。
–sbin-path=:Nginx可执行文件安装路径。只能安装时指定,不指定,默认为/sbin/nginx。
–conf-path=:没有给定-c选项下默认的nginx.conf的路径。不指定,默认为/conf/nginx.conf。
–pid-path=:nginx.conf中不指定pid指令的情况下,默认为 /logs/nginx.pid。
–lock-path=:nginx.lock文件的路径,默认为/logs/nginx.lock
–error-log-path=:nginx.conf中不指定error_log的情况下,默认错误日志的路径:/logs/error.log。
–http-log-path=- 在nginx.conf中没有指定access_log指令的情况下,默认访问日志路径: /logs/access.log。
–user= - 在nginx.conf中没有指定user指令的情况下,默认nginx使用用户为 nobody。
–group= - 在nginx.conf中没有指定grop指令的情况下,默认nginx使用nobody。 - 模块
–with-http_stub_status_module:启动server_status 页面
–with-http_ssl_module:启用ssl功能,让nginx支持https,此模块需要安装openssl-devel包
–without-http_gzip_module:禁用zip模块
#下载nginx的二进制包
[root@lotus ~]# wget http://nginx.org/download/nginx-1.20.0.tar.gz
#解压gz包
[root@lotus ~]# tar xf nginx-1.20.0.tar.gz
[root@lotus ~]# cd nginx-1.20.0
#安装pcre-devel和openssl-devel
[root@lotus nginx-1.20.0]# yum install -y pcre-devel
[root@lotus nginx-1.20.0]# yum install -y openssl-devel
#编译安装nginx
#【--prefix】表示nginx编译安装的路径,【--conf-path】表示nginx的配置文件nginx.conf的存放位置,【--with-http_ssl_module】表示支持https功能
[root@lotus nginx-1.20.0]# ./configure --prefix=/usr/local/nginx --conf-path=/etc/nginx/nginx.conf --with-http_ssl_module
[root@lotus nginx-1.20.0]# make && make install
[root@lotus nginx-1.20.0]# ls /usr/local/nginx
html logs sbin
#启动nginx服务
[root@lotus nginx-1.20.0]# cd /usr/local/nginx/sbin
[root@lotus sbin]# ls
nginx
[root@lotus sbin]# ./nginx
#nginx服务启动后,显示80端口已开启
[root@lotus sbin]# netstat -tnlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:50783 0.0.0.0:* LISTEN 1270/rpc.statd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1248/rpcbind
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 4223/nginx
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1441/sshd
tcp 0 0 :::111 :::* LISTEN 1248/rpcbind
tcp 0 0 :::57749 :::* LISTEN 1270/rpc.statd
tcp 0 0 :::22 :::* LISTEN 1441/sshd
tcp 0 0 ::1:25 :::* LISTEN 1520/master
#编写nginx服务启动脚本
[root@lotus ~]# vim /etc/init.d/nginx
#!/bin/bash
#
# nginx startup script for nginx server
#
# chkconfig: - 85 15
# processname:nginx
# config:/etc/nginx/nginx.conf
# pidfile:/var/run/httpd.pid
# 载入函数库
. /etc/rc.d/init.d/functions
# 载入网络配置
. /etc/sysconfig/network
nginxfile=/usr/local/nginx/sbin/nginx
prog=$(basename $nginxfile)
pidfile=/usr/local/nginx/logs/nginx.pid
conffile=/etc/nginx/nginx.conf
lockfile=/var/lock/subsys/nginx
RETVAL=0
start() {
if [ -f $pidfile ];then
echo "nginx is running"
else
daemon $nginxfile -c $conffile
RETVAL=$?
echo -n $"Starting $prog:"
echo
[ $RETVAL = 0 ] && touch ${lockfile}
fi
return $RETVAL
}
stop() {
killproc $prog -QUIT
RETVAL=$?
echo -n $"Stopping $prog"
echo
[ $RETVAL -eq 0 ] && rm -rf $lockfile
return $RETVAL
}
restart() {
configtest || return $?
stop
start
}
reload() {
configtest || return $?
killproc $nginxfile -HUP
RETVAL=$?
echo -n $"Reloading $prog:"
}
configtest() {
$nginxfile -t -c $conffile
}
case "$1" in
start)
start
RETVAL=$?
;;
stop)
stop
RETVAL=$?
;;
restart)
restart
RETVAL=$?
;;
status)
status $prog
RETVAL=$?
;;
reload)
reload
RETVAL=$?
;;
*)
echo "USAGE:$0 {start|stop|reload|restart|status}"
exit 1
esac
exit $RETVAL
[root@lotus ~]# chmod +x /etc/init.d/nginx
访问服务器,结果如下:
以上是关于Linux学习--编译安装nginx的主要内容,如果未能解决你的问题,请参考以下文章