博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
源码安装Nginx以及用systemctl管理
阅读量:6511 次
发布时间:2019-06-24

本文共 1853 字,大约阅读时间需要 6 分钟。

一、源码安装Nginx:

  • 先安装gcc编译器(安装过的可以忽略)

    [root@localhost ~]# yum -y install gcc gcc-c++ wget
  • 进入src目录

    [root@localhost ~]# cd /usr/local/src/
  • 下载 nginx软件包

    [root@localhost src]# wget http://nginx.org/download/nginx-1.14.0.tar.gz
  • 解压

    [root@localhost src]# tar -zxvf nginx-1.14.0.tar.gz
  • 进入nginx-1.14.0目录

    [root@localhost src]# cd nginx-1.14.0/
  • 安装依赖

    [root@localhost nginx-1.14.0]# yum -y install openssl openssl-devel
  • ./configure软件配置与检查

    [root@localhostnginx-1.14.0]#./configure--prefix=/usr/local/nginx --with-http_ssl_module
  • 安装

    [root@localhost nginx-1.14.0]# make [root@localhost nginx-1.14.0]# make install
  • 启动nginx

    [root@localhost nginx-1.14.0]#cd /usr/local/nginx/sbin [root@localhost nginx-1.14.0]#./nginx

查看是否启动成功

[root@localhost nginx-1.14.0]# ps aux |grep nginx

二、systemctl管理:

  • 创建配置文件

    源码安装的nginx在/etc/systemd/system/multi-user.target.wants/目录下是没有nginx.service这个文件的,所以要新建

    [root@localhost nginx-1.14.0]#vim /usr/lib/systemd/system/nginx.service
  • 写入内容(全部复制进去,然后修改)

    [Unit] Description=nginx - high performance web server Documentation=http://nginx.org/en/docs/ After=network-online.target remote-fs.target nss-lookup.target Wants=network-online.target [Service] Type=forking PIDFile=/var/run/nginx.pid ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf ExecReload=/bin/kill -s HUP $MAINPID ExecStop=/bin/kill -s TERM $MAINPID [Install] WantedBy=multi-user.target
  • 修改 [Service]内容

    将:      ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf,  改为:      ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  • 设置开机启动

    [root@localhost nginx-1.14.0]# systemctl enable nginx.service
  • 关闭之前启动的nginx服务

    [root@localhost nginx-1.14.0]# pkill -9 nginx
  • 重载修改过的所有配置文件

    [root@localhost nginx-1.14.0]#systemctl daemon-reload
  • 重新启动nginx服务

    [root@localhost nginx-1.14.0]#systemctl start nginx

    最后可以用浏览器访问自己虚拟机的IP:192.168.xxx.xx

转载于:https://www.cnblogs.com/MisterZZL/p/9609439.html

你可能感兴趣的文章
Device driver Makefile 赋值语句总结。
查看>>
const参数,const返回值与const函数
查看>>
struts结合json报异常解决方案
查看>>
渗透测试工程师的Linux学习之路
查看>>
nagios监控大合辑
查看>>
第一章 Shiro简介——《跟我学Shiro》
查看>>
连载:JavaEE极速全注解驱动开发(一)----Spring MVC 3.x
查看>>
虚拟机中的锁优化简介(适应性自旋/锁粗化/锁削除/轻量级锁/偏向锁)
查看>>
android学习--关于IDE和插件
查看>>
如何使用 Google analysis 工具
查看>>
object转为有序json
查看>>
ORACLE数据库汉字占用字节数
查看>>
一些有趣的erlang项目
查看>>
python2加flask 开发web项目 房地产微官网
查看>>
PostgreSQL建模工具 pgModeler
查看>>
系统时间错误导致make命令实际在循环执行configure命令
查看>>
网络电子温度计
查看>>
freemarker语法介绍及其入门
查看>>
数据分析的宏观步骤
查看>>
mvp和rxjava继续学习
查看>>