Zabbix的定期備份

2022-06-12 18:03:08 字數 1767 閱讀 7277

1 [root@zabbix-server ~]# mysqldump -uroot -p123456 --opt  zabbix >zabbix.sql

2 [root@zabbix-server ~]# scp zabbix.sql [email protected]:/tmp

注意:若資料庫過大,建議採用bzip2壓縮進行備份。

1 [root@zabbix-server ~]# mysqldump -uroot -p123456 --opt zabbix | bzip2 >zabbix.sql.bz2

2 [root@zabbix-server ~]#mysql -uroot '

-ppassword

' zabbix < zabbix.sql

資料表有:

alerts

auditlog

events

history

history_log

history_str

history_str_sync

history_sync

history_text

history_uint

history_uint_sync

node_cksum

proxy_dhistory

proxy_history

service_alarms

services_times

trends

trends_uint

其它的表便是zabbix的配置資訊表:

1 [root@zabbix-server ~]# mysqldump -uroot -p123456 --databases zabbix  --ignore-table=zabbix.alerts --ignore-table=zabbix.auditlog  --ignore-table=zabbix.events  --ignore-table=zabbix.history  --ignore-table=zabbix.history_log --ignore-table=zabbix.str --ignore-table=zabbix.str_sync  --ignore-table=zabbix.sync  --ignore-table=zabbix.text --ignore-table=zabbix.uint  --ignore-table=zabbix.uint_sync  --ignore-table=zabbix.node_cksum  --ignore-table=zabbix.proxy_dhistory --ignore-table=zabbix.proxy_history --ignore-table=zabbix.service_alarms --ignore-table=zabbix.services_times --ignore-table=zabbix.trends --ignore-table=zabbix.trends_uint > zabbix_config.sql	    #使用--ignore-table跳過不需要備份的表

2 [root@zabbix-server ~]#ls -l zabbix_config.sql

3 -rw-r--r-- 1 root root 14572182 10-23 01:15 zabbix_config.sql

zabbix提供將所有配置匯出為標準xml格式檔案,也支援匯入標準格式的xml配置檔案。

configuration---->templates/host---->export/import---->export。

oracle 定期備份

ap伺服器上建立c backup資料夾 資料夾路徑客戶自己選擇 開啟dbbkup.bat 修改紅字部分 儲存 expcitictest citictest colm2 file c backup date 4,20 dmp log c backup date 4,20 log compress y ...

postgres 定期備份shell

bin bash pg dump u postgres mobile home soft backup mobile.date y m d.h m s sql pg dump u postgres postgres home soft backup postgres.date y m d.h m s...

MYSQL BAT 定期自動備份

1.mysql資料庫的自動備份,mysql官方提供了乙個比較好的外掛程式 bin目錄 我們通過呼叫其外掛程式以及windows自帶的任務計畫,即可完成資料庫的定期備份 採用批處理的方式實現,具體如下 第乙個批處理 資料庫的自動備份 autobackup.bat echo off set a date...