shell脚本自动部署及监控
一、shell脚本部署nginx反向代理和三个web服务
1 对反向代理服务器进行配置
#!/bin/bash
#修改用户交互页面 用户输入参数执行相应的参数
#安装epel扩展包和nginx
function ng_yum_install(){
yum install epel-release -y
yum install nginx -y
yum install rpcbind nfs-utils -y
}
#nginx init function
#nginx status
#nginx 开机enable
function ng_init(){
systemctl start nginx
systemctl enable nginx
}
#脚本执行
ng_yum_install
sed -ri '/^http/a \ \ \ \ upstream pythonweb{\n server\ 192.168.43.21;weight=3;\n server\ 192.168.43.23;\nserver\ 192.168.43.24;\n}' /etc/nginx/nginx.conf #四个反斜杠是四个空格
sed -ri '/^ +location \/ /a proxy_pass http:\/\/pythonweb;' /etc/nginx/nginx.conf
systemctl stop firewalld
systemctl enable firewalld
echo 'share 192.168.43.0/24(rw,sync,fsid=0)' >/etc/exports
chmod -R o+w /share #修改share目录的权限
systemctl enable nfs-service.service
systemctl enable rpcbind.service
systemctl start rpcbind.service
systemctl start nfs_service.service
2 对三台web服务器分别进行配置
function ng_yum_install(){
yum install epel-release -y
yum install nginx -y
yum install rpcbind nfs-utils -y #安装rpcbind和nfs
systemctl enable rpcbind.service && systemctl start rpcbind.service
}
#nginx init function
#nginx status
#nginx 开机enable
function ng_init(){
systemctl start nginx
systemctl enable nginx
}
ng_yum_install
mkdir /html
touch /html/index.html
echo 'welcome nginx' >/html/index.html
sed -ri '/^ +location \/ /a root \/html;\nindex index.html; ' /etx/nginx/nginx.conf
ng_init
systemctl stop firewalld
systemctl enable firewalld
mount -t nfs 192.168.43.20:/share /var/www.html
二、编写监控脚本 服务 内存 磁盘使用率 异常报警##
ps aux |grep nginx |grep -v 'grep'
if[ $? -ne 0 ]
then
echo 'nginx is die'
systemctl start nginx
if[ $? -eq 0 ]
then
echo 'nginx now is activing'
fi
fi
1 Python 发送邮件工具
将此文件放到/bin下并给予可执行权限
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import sys
import smtplib
import email.mime.multipart
import email.mime.text
server = 'smtp.163.com'
port = '25'
def sendmail(server,port,user,pwd,msg):
smtp = smtplib.SMTP()
smtp.connect(server,port)
smtp.login(user, pwd)
smtp.sendmail(msg['from'], msg['to'], msg.as_string())
smtp.quit()
print('邮件发送成功email has send out !')
if __name__ == '__main__':
msg = email.mime.multipart.MIMEMultipart()
msg['Subject'] = 'python'
msg['From'] = 'example@163.com' #发件人地址
msg['To'] = 'example@163.com' #收件人地址
user = '邮箱用户名'
pwd = 'stmp客户端密码'
content='%s\n%s' %('\n'.join(sys.argv[1:4]),' '.join(sys.argv[4:])) #格式处理,专门针对我们的邮件格式
txt = email.mime.text.MIMEText(content, _charset='utf-8')
msg.attach(txt)
sendmail(server,port,user,pwd,msg)
2 内存监控脚本
#!/bin/bash
mem_limit=0 #测试的时候设置成0 后期根据实际需要设置
function memcheck(){
memtotal=`free |awk 'NR==2{print $2}'`
memuse1=`free |awk 'NR==2{print $3}'`
memuse2=`free |awk 'NR==2{print $6}'`
mempercent=`echo "scale=2;($memuse1+$memuse2)/$memtotal"|bc -l |cut -d. -f2`
#echo ${mempercent}%
if [ $mempercent -gt $mem_limit ]
then
msg="TIME:$(date +%F_%T)
HOSTNAME:$(hostname)
IPADDR:$(ifconfig |awk 'NR==2{print $2}')
MSG:Memory usage exceeds the limit,current value is ${mem_percent}%"
echo $msg
/usr/bin/mail $msg
fi
}
memcheck #执行函数
下面是shell中执行成功的界面

这是邮箱收到的信息

3 计划任务crond
crond默认是开机启动的
crontab -e -u root # 为root用户添加计划任务
* * * * *
*代表分钟、小时、日、月、周
crontab -l 查看上次添加的计划任务
tail -f /var/log/cron # 查看日志
shell脚本自动部署及监控的更多相关文章
- linux开发脚本自动部署及监控
linux开发脚本自动部署及监控 开发脚本自动部署及监控一.编写脚本自动部署反向代理.web.nfs:要求:1.部署nginx反向代理三个web服务,调度算法使用加权轮询: #!/bin/sh ngx ...
- linux基础 -nginx和nfs代理 开发脚本自动部署及监控
开发脚本自动部署及监控 1.编写脚本自动部署反向代理.web.nfs: (1).部署nginx反向代理三个web服务,调度算法使用加权轮询: (2).所有web服务使用共享存储nfs,保证所有web ...
- 脚本自动部署及监控 web
1.编写脚本自动部署反向代理.web.nfs: I.部署nginx反向代理两个web服务,调度算法使用加权轮询 II.所有web服务使用共享存储nfs,保证所有web都对其有读写权限,保证数据一致性: ...
- Shell脚本 自动部署 SpringBoot 应用
公司项目使用了SpringBoot.开发的应用需要自动上传到服务器.虽然目前对热部署还没完全掌握.先使用shell简化一下部署吧. # 上传密钥 sshLoginKey=/f/MyFile/root. ...
- shell脚本自动部署nignx反向代理及web服务器,共享存储
#!/bin/bash systemctl status nginx var=$? ] then yum install epel-release -y ] then echo "epel库 ...
- shell脚本编写-自动部署及监控
1.编写脚本自动部署反向代理.web.nfs: I.部署nginx反向代理两个web服务,调度算法使用加权轮询 II.所有web服务使用共享存储nfs,保证所有web都对其有读写权限,保证数据一致性: ...
- shell脚本安装部署反向代理 监控进程 计划任务
1.编写脚本自动部署反向代理.web.nfs: 要求: I.部署nginx反向代理三个web服务,调度算法使用加权轮询: 反向代理服务器脚本配置脚本 #!/bin/bash #安装eple和nginx ...
- 010-- 开发脚本自动部署nginx_web和nfs及监控内存
1.编写脚本自动部署反向代理.web.nfs: #!/bin/bash #检测安装nginx function detection_nginx(){ if [ -f /etc/nginx/nginx. ...
- Shell脚本一键部署——源码编译安装MySQL及自动补全工具
Shell脚本一键部署--源码编译安装MySQL及自动补全工具 编译安装MySQL 1.软件包 Mysql安装包 将安装包拖至/opt目录下,编辑一个脚本文件,将以下内容复制进去,然后source或者 ...
随机推荐
- 一种Unity2D多分辨率屏幕适配方案
http://www.cnblogs.com/flyFreeZn/p/4073655.html 此文将阐述一种简单有效的Unity2D多分辨率屏幕适配方案,该方案适用于基于原生开发的Unity2D游戏 ...
- RT-Thread 设备驱动UART浅析
OS版本:RT-Thread 4.0.0 芯片:STM32F407 RT-Thread的串口驱动框架与Linux相识,分成 I/O设备框架 + 设备底层驱动: 1. serial设备初始化及使用 将配 ...
- 转 java ClassLoader
http://blog.csdn.net/xyang81/article/details/7292380 http://www.ibm.com/developerworks/cn/java/j-lo- ...
- Centos 5.11 升级 Openssl
由于Openssl版本较低,故此升级版本来解决一些小问题. 1:查看openssl版本: [root@server-008 ~]# openssl versionOpenSSL 0.9.8e-fips ...
- samba服务器实验指导
第一节.samba是干什么的?它有什么用? Samba(SMB是其缩写) 是一个网络服务器,它是Linux作为本地服务器最重要的一个服务,用于Linux和Windows共享文件之用:Samba可以用于 ...
- SpringBoot | Velocity template
SpringBoot版本: <parent> <groupId>org.springframework.boot</groupId> <artifactId& ...
- 测试 | 单元测试工具 | JUnit
http://junit.sourceforge.net/javadoc/org/junit/Assert.html 使用: 新建测试类: 在预测试的类上点击右键--->NEW--->Ju ...
- [软件工程基础]2017.11.04 第八次 Scrum 会议
具体事项 项目交接燃尽图 每人工作内容 成员 已完成的工作 计划完成的工作 工作中遇到的困难 游心 #10 搭建可用的开发测试环境:#9 阅读分析 PhyLab 后端代码与文档:#8 掌握 Larav ...
- HDU-1263(STL+排序)
水果 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submiss ...
- 2017 Multi-University Training Contest - Team 1 Balala Power!
Talented Mr.Tang has n strings consisting of only lower case characters. He wants to charge them wit ...