First, you need to install MaxMind C Api including geoipupdate utility.
Second, configure /usr/local/etc/GeoIP.conf file with your LicenseKey, UserId and ProductIds. A sample config file:
UserId 424242 LicenseKey zLzIYFYENTZOyAyNdSdWbEoR42 ProductIds 106
Put the following script at – /etc/cron.monthly/updategeoip.sh (cron job)
#!/bin/bash # Shell Script to Update GeoIP Country database in each WebServer Jail defined by $TDIRS # ------------------------------------------------------------------------- # Copyright (c) 2007 Vivek Gite <vivek@nixcraft.com> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is part of nixCraft shell script collection (NSSC) # Visit http://bash.cyberciti.biz/ for more information. # ------------------------------------------------------------------------- GEOUPDATE=/usr/local/bin/geoipupdate GEODB=/usr/local/share/GeoIP/GeoIP.dat # ------------------ # TRUE = Update in Jail # FALSE = Update only at $GEODB CHROOTED=FALSE # ------------------ # DIR:user:group format, only used if CHROOTED == TRUE TDIRS="/webroot/apache/usr/local/geoip|www:www /webroot/nginx/usr/local/geoip|nginx:nginx" CHOWN=/bin/chown CP=/bin/cp [ -f $GEOUPDATE ] && $GEOUPDATE # Update if chrooted Apache jail... if [ "$CHROOTED" == "TRUE" ] then for i in $TDIRS do d=$(echo "$i" | cut -d'|' -f1) p=$(echo "$i" | cut -d'|' -f2) $CP -f $GEODB $d $CHOWN $p $d/$(basename $GEODB) done fi
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 4 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
So, how to get the License Key & Product Id ?
You can order it from the maxmind site only.
There’s a typo on the first nginx (nginix).
Thanks for the heads up!