工作中用到的shell脚本集排序:默认按更新时间
文章平均质量分 70
linux-xiaotian
这个作者很懒,什么都没留下…
展开
-
shell脚本实现-----自动巡检脚本.sh
[root@localhost ~]# vim自动巡检脚本.sh#!/bin/bash#################################################################### Functions: this script from polling system status# Info: be suitable for CentOS/RHEL...转载 2018-12-02 16:43:58 · 738 阅读 · 0 评论 -
shell脚本---实现自动生成签名私匙和证书
shell脚本编辑如下:[root@localhost shell]# vim siyaohezhengshu.sh #!/bin/bashread -p "请输入存放证书的目录:" dirif [ ! -d $dir ];then echo "该目录不存在" read -p "请输入徐需要创建的目录" dir mkdir $dirfiread -p ...转载 2018-12-02 16:46:21 · 781 阅读 · 0 评论 -
shell脚本 实现Linux进程数量信息
脚本如下:[root@localhost shell]# vim linuxprocess.sh #!/bin/bashrunning=0 -----用于统计正在运行的程序sleeping=0 -----用于统计正在睡眠的进程,但可被唤醒stoped=0 -----用于统计停止的程序zombie=0 ------用于统计僵尸程序,进程已经终...转载 2018-12-02 16:50:53 · 723 阅读 · 0 评论 -
shell脚本 ----mysql备份使用mysqldump实现自动备份
版权声明: https://blog.csdn.net/zhydream77/article/details/81149487脚本如下:[root@localhost shell]# cat mysqldump.sh#!/bin/bash#定义变量user(数据库用户名),passwd(数据库密码),date(备份的时间标签)#dbname(需要备份的数据库名称,根据实际需求需...转载 2018-12-02 17:04:43 · 203 阅读 · 0 评论 -
shell脚本 ------用于检查主机处于开机或者处于关机状态
版权声明: https://blog.csdn.net/zhydream77/article/details/81148837脚本如下:[root@localhost shell]# vim 04.sh#!/bin/bash ----标注解释器for i in {1..254} -----写循环遍历1到254do ping -c2 -i0.3 -W...转载 2018-12-02 17:05:57 · 687 阅读 · 0 评论 -
shell脚本---自动化部署lnmp
版权声明: https://blog.csdn.net/zhydream77/article/details/81148635脚本如下:[root@localhost shell]# vim lnmp.sh#!/bin/bashyum -y install httpd ----安装httpyum -y install mariadb mariadb-devel mariadb...转载 2018-12-02 17:07:07 · 339 阅读 · 0 评论