码迷,mamicode.com
首页 > 其他好文 > 详细

二进制编译nginx,完成服务启动脚本

时间:2018-09-27 20:12:39      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:软件   echo   ice   关闭防火墙   权限   The   $1   cas   text   

一丶环境准备
关闭防火墙,安装软件包,上传nginx压缩包并解压,配置yum源
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
二丶创建用户nginx
技术分享图片
三丶进入解压路径,并安装服务到指定路径
技术分享图片
四丶安装服务
技术分享图片
五丶编写脚本
技术分享图片
PS:脚本内容如下
#!/bin/bash
#chkconfig: 2345 97 25
#description nginx-server-scryt
nginx=/usr/local/nginx/sbin/nginx
case "$1" in
start)
netstat -anlpt | grep nginx
if [ $? -eq 0 ]
then
echo "nginx service running!"
else
echo "nginx service not running!"
$nginx
fi
;;
restart)
$nginx -s reload
if [ $? -eq 0 ]
then
echo "nginx server is begin restart"
else
echo "nginx server restart"
fi
;;
stop)
$nginx -s stop
if [ $? -eq 0 ]
then
echo "nginx server is stop"
else
echo "nginx server stop,try again"
fi
;;
status)
netstat -anlpt | grep nginx
if [ $? -eq 0 ]
then
echo "nginx server is running!"
else
echo "nginx server is not running,try to restart"
fi
;;
*)
echo "Please enter (start|restart|stop|status)"
;;
esac
exit 0

六丶给脚本执行权限,并移动到安装的路径当中,执行
技术分享图片
七丶访问网页
技术分享图片

二进制编译nginx,完成服务启动脚本

标签:软件   echo   ice   关闭防火墙   权限   The   $1   cas   text   

原文地址:http://blog.51cto.com/13955562/2286842

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!