Django geoip2 + Maxmind 在本地工作,但不在生产环境中?

Django geoip2 + Maxmind working locally, but not in production?

我能够获取响应对象并将其呈现到本地页面,但在我的实时网站上它不起作用。

我正在使用 Maxmind 的二进制数据库,它是我项目文件夹中的 GeoLite2-City.mmdb 文件。

这也适用于我网站的 Ubuntu 16.04 终端:

import geoip2.database
reader = geoip2.database.Reader('/home/jake/project-main/project/GeoLite2-City.mmdb')
ip = request.META.get('REMOTE_ADDR', None)
location_lookup_response = reader.city(ip)
print(location_lookup_resonse)

但是,它在网站上不起作用。这里的任何想法表示赞赏。

在您的 settings.py 文件中,您应该将 GEOIP_PATH 设置为包含 GeoLite2-*.mmdb 文件的目录。 can be found here.

的文档

一旦 *.mmdb 文件在 GEOIP_PATH 中,您应该能够使用 django shell:

找到它们
$ python manage.py shell
>>> from django.conf import settings
>>> print(settings.GEOIP_PATH)
'/path/to/geoip-mmdb-files'

>>> import os
>>> os.listdir(settings.GEOIP_PATH)
['GeoLite2-City.mmdb', 'GeoLite2-Country.mmdb']

>>> from django.contrib.gis.geoip2 import GeoIP2
>>> g = GeoIP2()
>>> g.country('google.com')
{'country_code': 'US', 'country_name': 'United States'}