Configure the MaxMind geolocation database settings.
juggernaut --task=application:geolocation
Option | Value | Description |
---|---|---|
--license_key |
<string> | The free license key that was generated from Maxmind. |
--db_update_interval |
<digit> | The geolocation database update interval (in days). |
--internal_cache |
<1|0> | Enable an internal cache for geolocation database lookups. |
--default |
<yes> | Reset all settings to their default values. |
--default_option |
<yes> | Reset a specific setting to its default value. |
--download_city |
<yes> | Download the GeoIP2 city database. |
--download_asn |
<yes> | Download the GeoIP2 ASN database. |
--force |
<yes> | Force download of the GeoIP2 database even if it already exists. |
// set the MaxMind license key
juggernaut --task=application:geolocation --license_key=XXXXXXXXXXXXXXX
// force download the GeoIP2 city and GeoIP2 ASN databases even if they exist
juggernaut --task=application:geolocation --download_city=yes --download_asn=yes --force=yes