【shell案例】nginx编译安装脚本
【摘要】 前言
本脚本没有使用函数,脚本安装的是nginx-1.16.1 , 如果你要安装其他版本,可以适当修改脚本的版本号 sed -i ‘s/原字符串/新字符串/g’ /app/nginx-install.sh 注意: 此脚本名字为nginx-install.sh, 存放在/app路径下:
脚本源码
#!/bin/bash
systemctl stop firewall...
前言
本脚本没有使用函数,脚本安装的是nginx-1.16.1 , 如果你要安装其他版本,可以适当修改脚本的版本号
sed -i ‘s/原字符串/新字符串/g’ /app/nginx-install.sh
注意: 此脚本名字为nginx-install.sh, 存放在/app路径下:
脚本源码
#!/bin/bash
systemctl stop firewalld && setenforce 0
#首先安装nginx的依赖环境
yum -y install gcc pcre-devel zlib-devel net-tools wget
#解压nginx的安装包
if [ ! -d "/root/nginx-1.16.1" ]; then wget http://nginx.org/download/nginx-1.16.1.tar.gz tar -zxf nginx-1.16.1.tar.gz echo "压缩包已解压"
else echo "此文件已存在" continue
fi
#进去文件开始检查环境 编译安装
if [ ! -d /usr/local/nginx ]; then cd /root/nginx-1.16.1 && ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module
&& make && make install
else continue
fi
#判断是否nginx的端口被占用
pid_file="/usr/local/nginx/logs/nginx.pid"
if [ ! -e ${pid_file} ]; then echo "被占用的pid是:`cat ${pid_file}`" kill `cat ${pid_file}` echo "服务被占用,已删掉"
else echo "服务没有被占用" continue
fi
nginx=/usr/local/nginx/sbin/nginx
#开始启动nginx
read -p "接下来要做的操作:" action
check(){ netstat -anptu | grep nginx if [ $? -eq 0 ];then continue fi
}
case $action in start) netstat -anptu | grep nginx if [ $? -eq 0 ]; then continue else $nginx fi ;; stop) netstat -anptu | grep nginx if [ $? -eq 0 ]; then echo "nginx-server is already running nginx-server begin stop" $nginx -s stop else echo "nginx-server is not start" fi ;; reload) netstat -anptu | grep nginx if [ $? -eq 0 ]; then echo "nginx-server is already running nginx-server begin reload" $nginx -s reload else echo "nginx-server is not running now begin start nginx-server" $nginx $nginx -s reload fi ;; statue) check ;; *) echo "please enter{start|stop|reload|statue}" ;;
esac
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
总结
脚本重要练习,在不断练习中成长。
文章来源: zmedu.blog.csdn.net,作者:互联网老辛,版权归原作者所有,如需转载,请联系作者。
原文链接:zmedu.blog.csdn.net/article/details/108186211
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)