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


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章