工作中用到的shell脚本集
文章平均质量分 69
zhy-dream
这个作者很懒,什么都没留下…
展开
-
shell脚本---自动化部署lnmp
脚本如下:[root@localhost shell]# vim lnmp.sh#!/bin/bashyum -y install httpd ----安装httpyum -y install mariadb mariadb-devel mariadb-server ---安装数据库yum -y install php php-mysql ----安装php依赖包syste...原创 2018-07-21 20:21:43 · 901 阅读 · 1 评论 -
shell脚本 ------用于检查主机处于开机或者处于关机状态
脚本如下:[root@localhost shell]# vim 04.sh#!/bin/bash ----标注解释器for i in {1..254} -----写循环遍历1到254do ping -c2 -i0.3 -W1 192.168.4.$i &>/dev/null -----循环遍历1到265段看是否可以ping通,并把结果删...原创 2018-07-21 20:38:40 · 1542 阅读 · 0 评论 -
shell脚本 ----mysql备份使用mysqldump实现自动备份
脚本如下:[root@localhost shell]# cat mysqldump.sh#!/bin/bash#定义变量user(数据库用户名),passwd(数据库密码),date(备份的时间标签)#dbname(需要备份的数据库名称,根据实际需求需要修改该变量的值,默认备份mysql数据库)user='root' -----数据库用户passwd='123456' ...原创 2018-07-21 21:44:04 · 5204 阅读 · 1 评论 -
shell脚本 实现Linux进程数量信息
脚本如下:[root@localhost shell]# vim linuxprocess.sh #!/bin/bashrunning=0 -----用于统计正在运行的程序sleeping=0 -----用于统计正在睡眠的进程,但可被唤醒stoped=0 -----用于统计停止的程序zombie=0 ------用于统计僵尸程序,进程已经终...原创 2018-07-22 12:06:54 · 2200 阅读 · 1 评论 -
shell脚本---实现自动生成签名私匙和证书
shell脚本编辑如下:[root@localhost shell]# vim siyaohezhengshu.sh #!/bin/bashread -p "请输入存放证书的目录:" dirif [ ! -d $dir ];then echo "该目录不存在" read -p "请输入徐需要创建的目录" dir mkdir $dirfiread -p ...原创 2018-07-22 12:47:19 · 2452 阅读 · 0 评论 -
shell脚本实现-----自动巡检脚本.sh
[root@localhost ~]# vim自动巡检脚本.sh#!/bin/bash#################################################################### Functions: this script from polling system status# Info: be suitable for CentOS/RHEL...原创 2018-07-22 13:46:45 · 8981 阅读 · 0 评论