一键安装nginx脚本#!/bin/bash#定义函数,检查软件包是否安装check_packet(){rpm-qa$1|wc-l}#安装依赖包packet_install(){foriin"pcre-develzlibzlib-developensslopenssl-deve"doa=`check_packet$i`if[$a==0]thenyum-yinstall$ifidone}#安装ngi
分类:
其他好文 时间:
2020-06-22 09:28:56
阅读次数:
52
环境 主机名 wanIP lanIP 服务 角色 web01 10.0.0.7 172.16.1.7 nginx服务端 被控端 web02 10.0.0.8 172.16.1.8 nginx服务端 被控端 流程分析 1.安装ansible 2.优化ansible 3.推送公钥 4.开启防火墙 5.开 ...
分类:
Web程序 时间:
2020-06-14 01:24:58
阅读次数:
92
#!/bin/bash # # install_dir='/data/package/' conf_dir='/data/nginx/' package=nginx-1.13.1.tar.gz dir=nginx-1.13.1 # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 i... ...
分类:
其他好文 时间:
2019-12-02 17:23:07
阅读次数:
96
1.创建预备环境[root@192~]#test-f/services/current_apps||mkdir/services/current_apps2&>/dev/null[root@192~]#test-f/services/download_soft_v||mkdir/services/download_soft_v2&>/dev/null[root@192~
分类:
其他好文 时间:
2019-04-29 22:37:01
阅读次数:
384
#!/bin/sh echo " start install nginx " yum install -y gcc-c++ zlib zlib-devel openssl openssl--devel pcre pcre-devel if [ 'grep "nginx" /etc/passwd | ...
分类:
系统相关 时间:
2018-11-08 19:47:48
阅读次数:
350
一键安装nginx和fsfs分布式文件存储shell脚本
分类:
系统相关 时间:
2018-03-04 14:26:53
阅读次数:
290
系统版本CentOS release 6.9 (Final)2.6.32-696.el6.x86_64 x86_64#安装pcre pcre-devel [root@web01 ~]# yum install pcre pcre-devel -y #检查pcre pcre-devel[root@web01 ~]# rpm -qa pcre pcre-devel&n
分类:
其他好文 时间:
2018-02-27 16:06:05
阅读次数:
188
#!/bin/bashselect banben in nginx-1.6.3 nginx-1.7.3 nginx-1.8.1 nginx-1.9.9do if [[ -n $banben ]] ;then breakfidonepath_nginx="http://nginx.org/downlo ...
分类:
其他好文 时间:
2017-10-15 14:53:16
阅读次数:
161
#!/bin/bash
#判断是否是roo用户
if[$(id-u)!="0"];then
echo"Error:Youmustberoottorunthisscript"
fi
#每次使用只需修改自定义内容即可
#自定义用户名和组
Group_Name="nginx"
User_Name="nginx"
#自定义nginx变量
Install_Path="/usr/local/nginx"
Package_Type=".tar.gz"
V..
分类:
其他好文 时间:
2017-09-22 11:51:15
阅读次数:
162
1、ansible一键安装nginx服务#nginx_serverinstall
-hosts:172.16.1.5根据自己的主机自行定义
tasks:
-name:yumpcre-devel
yum:name=pcre-devel
-name:yumpcre
yum:name=pcre
-name:yumopenssl-devel
yum:name=openssl-devel
-name:yumopenssl
yum:name=openssl
-name:create/h..
分类:
其他好文 时间:
2017-09-06 19:41:03
阅读次数:
180