通过添加yum源安装
安装编译器和依赖
yum install -y gcc gcc-c++ make libtool zlib \
zlib-devel openssl openssl-devel pcre pcre-devel
添加yum源
因为yum源中没有Nginx,所以先得把Nginx源加入yum中
其实安装rpm源就相当于我们自己新建一个repo仓库,只不过yum的话它自动帮我们建立 /etc/yum.repos.d/nginx.repo
Nginx-RPM源 http://nginx.org/packages
yum install -y http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
#其实安装rpm源就相当于我们自己新建一个repo仓库
#只不过yum的话他自动帮我们建立 /etc/yum.repos.d/nginx.repo
yum install nginx
rpm -q nginx
通过yum安装的好处是简单,方便管理和升级,能yum安装当然最好,其次才是源码安装。
通过源码安装
Nginx源码地址
https://nginx.org/en/download.html
Nginx源码安装约定:
nginx源码路径:/usr/local/src
nginx安装路径:/usr/local/nginx
nginx配置文件路径:/usr/local/nginx/conf/nginx.conf
nginx虚拟主机路径:/usr/local/nginx/conf/vhosts
安装编译器和依赖
yum install -y gcc gcc-c++ make libtool zlib \
zlib-devel openssl openssl-devel pcre pcre-devel
下载源码
cd /usr/local/src
wget https://nginx.org/download/nginx-1.12.1.tar.gz
添加nginx用户和组
useradd -s /sbin/nologin -M nginx
#也可指定UID, -u
安装Nginx
tar -xzvf nginx-1.12.1.tar.gz
cd nginx-1.12.1
./configure --prefix=/usr/local/nginx \
--user=nginx --group=nginx \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-pcre \
--with-ipv6 \
--with-stream
make && make install
设置环境变量
echo "export PATH=$PATH:/usr/local/nginx/sbin" >> /etc/profile
source /etc/profile
添加nginx启动脚本
vi /etc/init.d/nginx:
#!/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: /usr/local/nginx/conf/nginx.conf
# config: /etc/sysconfig/nginx
# 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)
sysconfig="/etc/sysconfig/$prog"
lockfile="/var/lock/subsys/nginx"
pidfile="/usr/local/nginx/logs/${prog}.pid"
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
[ -f $sysconfig ] && . $sysconfig
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 -p $pidfile $prog
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
configtest_q || return 6
stop
start
}
reload() {
configtest_q || return 6
echo -n $"Reloading $prog: "
killproc -p $pidfile $prog -HUP
echo
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
configtest_q() {
$nginx -t -q -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
# Upgrade the binary with no downtime.
upgrade() {
local oldbin_pidfile="${pidfile}.oldbin"
configtest_q || return 6
echo -n $"Upgrading $prog: "
killproc -p $pidfile $prog -USR2
retval=$?
sleep 1
if [[ -f ${oldbin_pidfile} && -f ${pidfile} ]]; then
killproc -p $oldbin_pidfile $prog -QUIT
success $"$prog online upgrade"
echo
return 0
else
failure $"$prog online upgrade"
echo
return 1
fi
}
# Tell nginx to reopen logs
reopen_logs() {
configtest_q || return 6
echo -n $"Reopening $prog logs: "
killproc -p $pidfile $prog -USR1
retval=$?
echo
return $retval
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest|reopen_logs)
$1
;;
force-reload|upgrade)
rh_status_q || exit 7
upgrade
;;
reload)
rh_status_q || exit 7
$1
;;
status|status_q)
rh_$1
;;
condrestart|try-restart)
rh_status_q || exit 7
restart
;;
*)
echo $"Usage: $0 {start|stop|reload|configtest|status|force-reload|upgrade|restart|reopen_logs}"
exit 2
esac
两者的卸载和升级
yum卸载 yum remove xxx
;
yum升级 yum update xxx
。
源码的话,要麻烦一些:
有提供 unstall
的话可以 make uninstall
,或者找出安装的文件夹,whereis, --prefix
那些,删除那些文件夹;
下载新版本安装包,注意编译参数那些,重新安装;
顺便谈谈yum安装和源码安装
yum安装是将yum源的rpm包下载到本地,安装这个rpm包。这个rpm包是别人编译安装好的二进制包;
源码安装,下载源码,解压缩后进行编译和安装,可进行参数等设定;
yum安装优缺点:
安装简单、快捷、方便,自动安装依赖包,管理方便;
但安装无法进行人为干预,不能按需安装。源里面有什么就安装什么。
源码安装优缺点:
编译安装过程可执行设定参数,按需安装,可自己选择版本,灵活性大;
Linux中的包,一个依赖一个,装任何一个东西都要解决依赖问题,源码就得要解决一堆依赖问题。源码安装多了,不敢升级系统,升级后可能导致以前手动装的东西由于依赖问题而无法使用。
源码安装是很有必要的,这样可以知道自己在做什么。安装过程中遇到很多问题,正好可以学习如何解决,这样才能成长。如果一直用yum装,如果yum安装出了问题,不知道怎么解决就很悲剧了。