OGG运维优化脚本(十九)-进程操作类--辅助操作
文件:info.sh start.sh stop.sh
为明溪等地区用户提供了全套网页设计制作服务,及明溪网站建设行业解决方案。主营业务为成都网站设计、网站制作、明溪网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
路径 $HOME/ggscript/ggoperat
因为编写了太多脚本后有时候为了查看OGG运行状态不得不频繁的在GGSCI和系统界面切换,所以为了便捷自己写了几个比较简单的脚本,配合alias别名,模拟ggsci内的info start stop功能。同时这几个脚本也可以被其他脚本调用用于操作或者获取进程状态
info.sh
#!/bin/bash if [ $# -eq 0 ]; then echo "INFO EXTRACT" exit 2 fi echo $dir cd $HOME/ggscript/ggoperat dir=$PWD cd $HOME if [ -f .profile ];then . .profile fi if [ -f .bash_profile ];then . .bash_profile fi cd $dir backuptime=`date +%Y%m%d-%H%M%S` val=$1 val=`echo $val|tr a-z A-Z` if [ `echo $val|grep ^E` ];then IType=EXTRACT elif [ `echo $val|grep ^P` ];then IType=POST elif [ `echo $val|grep ^R` ];then IType=REPLICAT else echo "only can operate the EXTRACT REPLICAT and the POST process" exit 2 fi pro=`echo $val.PRM|tr A-Z a-z` cd $HOME/ggserver/dirprm if [ ! -e $pro ]; then echo "the PROCESS is not exist" exit 2 fi #cd $HOME/ggscript/ggoperat cd $HOME/ggserver (echo INFO $val;echo exit)|./ggsci
start.sh
#!/bin/bash if [ $# -eq 0 ]; then echo "START EXTRACT" exit 2 fi echo $dir cd $HOME/ggscript/ggoperat dir=$PWD cd $HOME if [ -f .profile ];then . .profile fi if [ -f .bash_profile ];then . .bash_profile fi cd $dir backuptime=`date +%Y%m%d-%H%M%S` val=$1 val=`echo $val|tr a-z A-Z` if [ `echo $val|grep ^E` ];then IType=EXTRACT elif [ `echo $val|grep ^P` ];then IType=POST elif [ `echo $val|grep ^R` ];then IType=REPLICAT else echo "only can operate the EXTRACT REPLICAT and the POST process" exit 2 fi pro=`echo $val.PRM|tr A-Z a-z` cd $HOME/ggserver/dirprm if [ ! -e $pro ]; then echo "the PROCESS is not exist" exit 2 fi #cd $HOME/ggscript/ggoperat cd $HOME/ggserver (echo START $val;echo exit)|./ggsci
stop.sh
#!/bin/bash if [ $# -eq 0 ]; then echo "STOP EXTRACT" exit 2 fi echo $dir cd $HOME/ggscript/ggoperat dir=$PWD cd $HOME if [ -f .profile ];then . .profile fi if [ -f .bash_profile ];then . .bash_profile fi cd $dir backuptime=`date +%Y%m%d-%H%M%S` val=$1 val=`echo $val|tr a-z A-Z` if [ `echo $val|grep ^E` ];then IType=EXTRACT elif [ `echo $val|grep ^P` ];then IType=POST elif [ `echo $val|grep ^R` ];then IType=REPLICAT else echo "only can operate the EXTRACT REPLICAT and the POST process" exit 2 fi pro=`echo $val.PRM|tr A-Z a-z` cd $HOME/ggserver/dirprm if [ ! -e $pro ]; then echo "the PROCESS is not exist" exit 2 fi #cd $HOME/ggscript/ggoperat cd $HOME/ggserver (echo STOP $val;echo exit)|./ggsci
名称栏目:OGG运维优化脚本(十九)-进程操作类--辅助操作
当前网址:http://scyanting.com/article/pshgoc.html