centos7 下 安裝GeoIP並設定自動更新

無風的雨發表於2017-12-19

一、設定YUM源

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

二、安裝GeoIP

yum -y install GeoIP-update

安裝後檢視 /etc/cron.weekly目錄

cd /etc/cron.weekly/

多了個 geoipupdate 指令碼檔案,用任務定是執行該指令碼可實現定時更新 GeoIP庫

三、設定定時任務

vim  /etc/crontab

增加

0 * * * 6 root run-parts /etc/cron.weekly

每週六 0點執行

更新的GeoIP庫檔案在 /usr/share/GeoIP/ 目錄

ll /usr/share/GeoIP/

這裡寫圖片描述

可以通過檢視 geoipupdate,獲取 庫檔案的位置

cat  /etc/cron.weekly/geoipupdate

這裡寫圖片描述

相關文章