CentOS7.3编译安装Nginx设置开机启动
起因
最近想玩nginx了,本来用yum -y install nginx安装也启动好了,但是买了本《Nginx高性能Web服务器详解》,我咋能辜负我的书费呢?于是我就直接ps -ef |grep nginx kill -QUIT master的pid,然后yum -y remove nginx了。没错,就是这么帅。
经过
下载nginx
当然是去nginx(http://nginx.org/en/download.html)主页了,没错我现在安装的就是稳定版1.14.2了。
进入放置nginx的目录,我是/usr/local/tools/nginx
输入命令: wget http://nginx.org/download/nginx-1.14.2.tar.gz,这儿就等着吧。
解压
接下来解压targz包,你要是喜欢看动画呢,就输入 tar -zxvf nginx-1.14.2.tar.gz ,你要是不看呢就输入tar xf nginx-1.14.2.tar.gz。
安装nginx
安装必要的工具:yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zlib-devel open openssl-devel gd-devel perl-devel perl-ExtUtils-Embed .
接下来未来保证源文件和二进制文件不重复,我进行了一波骚操作: mv nginx-1.14.2 nginx-1.14.2-installer mkdir nginx-1.14.2。就是把源码文件夹重命名,新建了一个nginx按照目录,现在的源码在/usr/local/tools/nginx\nginx-1.14.2-installer,我要安装在/usr/local/tools/nginx/nginx-1.14.2目录里。
进入源码文件: cd nginx-1.14.2-installer,
编译文件:./configure --prefix=/usr/local/tools/nginx/nginx-1.14.2,注意这儿改成你的目录就行了,有两点你的注意。其一、你的nginx.lock位置是在/var/lock/nginx.lock;其二、只安装了标准模块;其三、用户不限制,任何人都能启动nginx
我的完整的配置选项是这样子的(如果你也是用的修改的配置,一定要把这个配置信息记下来,否则以后查错,该配置你会哭的。):/configure --prefix=安装目录 --sbin-path=sbin/nginx --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid --error-log-path=logs/error.log --http-log-path=logs/access.log --lock-path=logs/lock/subsys/nginx --user=你要启动nginx的用户 --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_perl_module --with-ld-opt="-Wl,-E" --with-http_image_filter_module,--prefix是安装目录,一定要使用绝对路径;我把lock文件也放在了安装目录下的logs下;启用了几个基本模块
一定要注意这时候是不是报错了。
然后就是 make && make install
测试安装成功
进入安装目录:cd ../nginx-1.14.2,
执行启动: ./sbin/nginx,如果启动报错的话,看下错误信息,一般情况下是啥也没有。
查看服务: ps -ef |grep nginx

停止服务:kill -QUIT 7555,这个7555对应的是上图master process的进程编号,为了后续启动这儿一定要停了服务
查看服务: ps -ef |grep nginx

配置系统服务
配置系统服务:vim /etc/init.d/nginx
将下面这段复制进去(这是官网提供的加入系统服务脚本,链接 Red Hat NGINX Init Script ,找到nginx="/usr/local/tools/nginx/nginx-1.14.2/sbin/nginx" NGINX_CONF_FILE="/usr/local/tools/nginx/nginx-1.14.2/conf/nginx.conf"这两句改成你自己的目录):
#!/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/tools/nginx/nginx-1.14.2/conf/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /usr/local/tools/nginx/nginx-1.14.2/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/tools/nginx/nginx-1.14.2/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/tools/nginx/nginx-1.14.2/conf/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/usr/local/tools/nginx/nginx-1.14.2/logs/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 $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 a+x /etc/init.d/nginx
启动nginx: /etc/init.d/nginx start
停止nginx: /etc/init.d/nginx stop

加入系统服务:chkconfig --add /etc/init.d/nginx
使用systemctl启动nginx: systemctl start nginx
使用systemctl停止nginx: systemctl stop nginx

开机启动
配置开机启动:vi /etc/rc.local在最后加一句/etc/init.d/nginx start
结尾
打完收功!
CentOS7.3编译安装Nginx设置开机启动的更多相关文章
- Windows 安装nginx并开机启动
Win安装nginx并 开机启动 下载nginx安装包 nginx-1.12.2.zip,解压到D盘. https://pan.baidu.com/s/1InQa527yq35Q68c73RBb-A# ...
- CentOS7 nginx 最简单的安装以及设置开机启动
1. 下载tar包. 2. 解压缩tar包 3. 安装必须的部分 yum包 yum install -y gcc pcre pcre-devel openssl openssl-devel gd gd ...
- CentOS7.6编译安装nginx
配置阿里云yum源 cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak wget -O /etc/yu ...
- docker安装并设置开机启动(CentOS7/8)
CentOS7.2 docker分为CE和EE版本,EE版本收费,一般我们使用CE版本就满足要求了 docker安装及启动 docker安装很简单,直接使用如下命令安装即可,安装后的docker版本即 ...
- centos7安装redis设置开机启动
1. 首先下载redis源码,并使用tar进行解压缩 wget http://download.redis.io/releases/redis-4.0.8.tar.gztar xvzf redis-4 ...
- CentOs7.2编译安装Nginx服务器
1. 安装nginx依赖 首先安装nginx的依赖 yum install gcc gcc-c++ openssl openssl-devel cyrus-sasl-md5 2,创建nginx用户 如 ...
- yum 安装nginx(配置开机启动)
yum install -y nginx 通过yum安装的时候提示下面的错误 [root@localhost yum.repos.d]# yum install nginx 已加载插件:fastest ...
- docker安装并设置开机启动(Linux)
docker 开机启动: systemctl enable docker 使用的linux系统为CentOS7.2 docker分为CE和EE版本,EE版本收费,一般我们使用CE版本就满足要求了 do ...
- linux下安装nginx后开机启动篇
众所周知nginx安装后需要手动去启动,每次开机之后都要执行nginx的启动命令很蛋疼.那么我们来让nginx开机启动吧 1.先創建一個nginx文件把 [root@localhost ~]# vi ...
随机推荐
- windows sdk编程为应用程序添加图标
#include <windows.h> /*消息处理函数声明*/ HRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM ...
- python Matplotlib 系列教程(三)——绘制直方图和条形图
在本章节我们将学习如何绘制条形图和直方图 条形图与直方图的区别:首先,条形图是用条形的长度表示各类别频数的多少,其宽度(表示类别)则是固定的: 直方图是用面积表示各组频数的多少,矩形的高度表示每一组的 ...
- Yii 2.0版本调试输出SQL语句
项目是基于框架Yii 2.0开发的. 今天梳理一些数据统计功能代码的时候,想把当前运行的sql语句打印出来,然后放到navicat工具里面运行,并分析一下运行效率和调优方案,之前大部分时候都是写增加. ...
- laravel学习笔记2--表单
一.Controller 1.Request 1.1.取值:input // 1.取值 echo $request->input('name'); // 2.取不到值时打印默认值 echo $r ...
- DataBase安装及简单配置
下载以及安装 打开mysql官网下载页面:http://dev.mysql.com/downloads/mysql/ 用管理员身份打开cmd命令行工具,cd到解压文件的bin目录 输入mysqld i ...
- Zoj 3781(构造)
Zoj 3781(构造) Zoj 3781 As we all know, Coach Gao is a talented chef, because he is able to cook M dis ...
- POJ1013称硬币【枚举】
Counterfeit Dollar Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 52474 Accepted: 16 ...
- C51 静态数码管 个人笔记
显示器介绍 单片机系统中常用的显示器有: LED(Light Emitting Diode):发光二极管显示器 LCD(Liquid Crystal Display)液晶显示器 TFT 液晶显示器等. ...
- 使用mysql-proxy 快速实现mysql 集群 读写分离
目前较为常见的mysql读写分离分为两种: 1. 基于程序代码内部实现:在代码中对select操作分发到从库:其它操作由主库执行:这类方法也是目前生产环境应用最广泛,知名的如DISCUZ X2.优点是 ...
- mysql replication driver 在jdk1.6下失效问题解决
mysql diver包里有relication driver,可以在jdbc层进行读写分离,主写从读默认的配置方式是指定driver为ReplicationDriver,并改写jdbc url一起j ...