91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PYTHON測試腳本怎么寫

發布時間:2021-12-04 16:52:59 來源:億速云 閱讀:208 作者:柒染 欄目:互聯網科技

PYTHON測試腳本怎么寫,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

#!/usr/bin/python
# -*- coding: UTF-8 -*-
#CHECK ORACLE

SID="tcbjeas"
CHECK_LOG_FILE="tcbjeas.out"
FLAG=0


import os
my_file='/tmp/out.txt'
if os.path.exists(my_file):
    #刪除文件,可使用以下兩種方法。
    os.remove(my_file)

#檢查數據庫進程是否正常運行,如果不正常運行,將輸出相關進程失敗信息,后面的檢查信息將停止進行。
#如果運行正常,說明數據庫是可用的,繼續后面信息的檢查。
#check pmon process
import os
run=os.popen("ps -ef |grep ora_pmon_$SID |grep -v grep|wc -l").read()
if "0" in run:
FLAG=1
f=open("out.txt","w")
try:
f.write('WARNING!!!ora_pmon_$SID!process is not running!'+'\n')
finally:
f.close()




#check smon process
import os
run=os.popen("ps -ef |grep ora_smon_$SID |grep -v grep|wc -l").read()
if "0" in run:
FLAG=1
        f=open("out.txt","a")
        try:
                f.write('WARNING!!!ora_smon_$SID!process is not running!'+'\n')
        finally:
                f.close()


#check dbwr process
import os
dbwr=os.popen("ps -ef |grep ora_dbw0_$SID |grep -v grep|wc -l").read()
if "0" in dbwr:
FLAG=1
        f=open("out.txt","a")
        try:
                f.write('WARNING!!!ora_dbw0_$SID!process is not running!'+'\n')
        finally:
                f.close()

#check lgwr process
import os
lgwr=os.popen('ps -ef |grep ora_lgwr_$SID |grep -v grep|wc -l').read()
if "0" in lgwr:
print "lgwr"
FLAG=1
        f=open("out.txt","a")
        try:
                f.write('WARNING!!!ora_lgwr_$SID!process is not running!'+'\n')
        finally:
                f.close()


if  FLAG==1:
        f=open("out.txt","a")
        try:
                f.write('Warning!!!Oracle Instance $SID Is Down!'+'\n')
        finally:
                f.close()
else:
f=open("out.txt","a")
        try:
                f.write('OK,Oracle Process Are Running Normal!'+'\n')
        finally:
                f.close()


#檢查數據庫監聽是否正常運行,如果不正常運行,將發出警告信息,如果沒有警告信息說明監聽運行正常。
#check listener
import os
listen=os.popen("$ORACLE_HOME/bin/lsnrctl status|grep -i 'Instance'|grep -v grep|wc -l").read()
if "0" in listen:
        f=open("out.txt","a")
        try:
                f.write('Warning!!! Listener is not running normal!'+'\n')
        finally:
                f.close()
else:
        f=open("out.txt","a")
        try:
                f.write('OK,Listener is running normal!'+'\n')
        finally:
                f.close()



#檢查數據庫是否可以連接,如果不能連接,將發出警告信息(not open or not connect)
#如果沒有警告信息說明監聽運行正常。
import os
os.popen('sh sql.sh')


import os
connect=os.popen("grep -i 'OPEN' /tmp/sql.txt|grep -v grep|wc -l").read()
if "1" in connect:
        f=open("out.txt","a")
        try:
                f.write('OK,Oracle Connect Normal!'+'\n')
        finally:
                f.close()
else:
        f=open("out.txt","a")
        try:
                f.write('Warning!!Database Is Not Open'+'\n')
        finally:
                f.close()



cat sql.sh
#!/bin/bash


sqlplus user/passwd@orcl<< EOF
spool /tmp/sql.txt
set lines 500
select status from v\$instance;
spool off
exit
EOF

關于PYTHON測試腳本怎么寫問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

土默特右旗| 阜平县| 扬州市| 惠安县| 凤冈县| 金湖县| 五原县| 淳安县| 应用必备| 永和县| 白水县| 都匀市| 宜春市| 枞阳县| 历史| 思南县| 顺昌县| 锡林郭勒盟| 饶阳县| 盐亭县| 庆安县| 江门市| 津南区| 确山县| 马关县| 新疆| 吉林市| 秀山| 吉林省| 灯塔市| 桂林市| 兴仁县| 隆安县| 合川市| 博爱县| 泸溪县| 衡山县| 汶川县| 姜堰市| 聂荣县| 太湖县|