Linux下監控磁碟的空閑空間的shell指令碼,對於系統管理員或DBA來說,必不可少。下面是給出的一個監控磁碟空間空間shell指令碼的樣本,供大家參考。
1、監控磁碟的空閑空間shell指令碼
robin@SZDB:~/dba_scripts/custom/bin> more ck_fs_space.sh #!/bin/bash# ------------------------------------------------------------------------------+# CHECK FILE SYSYTEM SPACE BY THRESHOLD |# Filename: ck_fs_space.sh |# Desc: |# The script use to check file system space by threshold |# Once usage of the disk beyond the threshold, a mail alert will be sent. | # Deploy it by crontab. e.g. per 15 min | # Usage: |# ./ck_fs_space.sh <percent> </filesystem [/filesystem2]> | # |# Author : Robinson | # Blog : http://blog.csdn.net/robinson_0612 |# ------------------------------------------------------------------------------+## -------------------------------# Set environment here # ------------------------------if [ -f ~/.bash_profile ]; then . ~/.bash_profilefiexport host=`hostname`export mail_dir=/users/robin/dba_scripts/sendEmail-v1.56export mail_list='Robinson.cheng@12306.com'export mail_fm='oracle@szdb.com'tmpfile=/tmp/ck_fs_space.txtalert=n# --------------------------------# Check the parameter# --------------------------------max=$1if [ ! ${2} ]; then echo "No filesystems specified." echo "Usage: ck_fs_space.sh 90 / /u01" exit 1fi# --------------------------------# Start to check the disk space# --------------------------------while [ "${2}" ] do percent=`df -P ${2} | tail -1 | awk '{print $5 }' | cut -d'%' -f1` if [ "${percent}" -ge "${max}" ]; then alert=y break fi; shift done;# ------------------------------------------------------------------------# When a partition was above the threshold then send mail with df output# ------------------------------------------------------------------------if [ ! "${alert}" = 'n' ];then df -h >$tmpfile mail_sub="Disk usage beyond the threshold ${max} on ${host}." $mail_dir/sendEmail -u ${mail_sub} -f $mail_fm -t $mail_list -o message-file=${tmpfile}fi;exit;
2、指令碼說明
a、該指令碼使用了 sendEmail 工具來發送郵件。
b、使用方式為"Usage: ck_fs_space.sh 90 / /u01" 。
c、指令碼中使用了一個while迴圈來逐個判斷所有的指定分區的空閑空間是否超出闕值。
d、對於超出闕值的情形發送郵件並且附上當前伺服器上磁碟空間的使用方式。
更多參考:
有關Oracle RAC請參考
使用crs_setperm修改RAC資源的所有者及許可權
使用crs_profile管理RAC資源設定檔
RAC 資料庫的啟動與關閉
再說 Oracle RAC services
Services in Oracle Database 10g
Migrate datbase from single instance to Oracle RAC
Oracle RAC 串連到指定執行個體
Oracle RAC 負載平衡測試(結合伺服器端與用戶端)
Oracle RAC 伺服器端串連負載平衡(Load Balance)
Oracle RAC 用戶端串連負載平衡(Load Balance)
ORACLE RAC 下非預設連接埠監聽配置(listener.ora tnsnames.ora)
ORACLE RAC 監聽配置 (listener.ora tnsnames.ora)
配置 RAC 負載平衡與容錯移轉
CRS-1006 , CRS-0215 故障一例
基於Linux (RHEL 5.5) 安裝Oracle 10g RAC
使用 runcluvfy 校正Oracle RAC安裝環境
有關Oracle 網路設定相關基礎以及概念性的問題請參考:
配置非預設連接埠的動態服務註冊
配置sqlnet.ora限制IP訪問Oracle
Oracle 監聽器日誌配置與管理
設定 Oracle 監聽器密碼(LISTENER)
配置ORACLE 用戶端串連到資料庫
有關基於使用者管理的備份和備份恢複的概念請參考
Oracle 冷備份
Oracle 熱備份
Oracle 備份恢複概念
Oracle 執行個體恢複
Oracle 基於使用者管理恢複的處理
SYSTEM 資料表空間管理及備份恢複
SYSAUX資料表空間管理及恢複
Oracle 基於備份控制檔案的恢複(unsing backup controlfile)
有關RMAN的備份恢複與管理請參考
RMAN 概述及其體繫結構
RMAN 配置、監控與管理
RMAN 備份詳解
RMAN 還原與恢複
RMAN catalog 的建立和使用
基於catalog 建立RMAN儲存指令碼
基於catalog 的RMAN 備份與恢複
RMAN 備份路徑困惑
使用RMAN實現異機備份恢複(WIN平台)
使用RMAN遷移檔案系統資料庫到ASM
linux 下RMAN備份shell指令碼
使用RMAN遷移資料庫到異機
有關ORACLE體繫結構請參考
Oracle 資料表空間與資料檔案
Oracle 密碼檔案
Oracle 參數檔案
Oracle 聯機重做記錄檔(ONLINE LOG FILE)
Oracle 控制檔案(CONTROLFILE)
Oracle 歸檔日誌
Oracle 復原(ROLLBACK)和撤銷(UNDO)
Oracle 資料庫執行個體啟動關閉過程
Oracle 10g SGA 的自動化管理
Oracle 執行個體和Oracle資料庫(Oracle體繫結構)