我正在学习本教程:Maxmind GeoLite2 & GeoIP Database Auto-Update | 2020
我用mautic应用程序启动了一个Ec2 AWS实例(Debian10)。
我正在尝试在我的实例上安装Geolip Maximind,但没有成功。
以下是问题:
当我执行命令add-apt-repository ppa:maxmind/ppa时,我得到的结果是:
More info: https://launchpad.net/~maxmind/+archive/ubuntu/ppa
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keybox '/tmp/tmpxsjdtonq/pubring.gpg' created
gpg: /tmp/tmpxsjdtonq/trustdb.gpg: trustdb created
gpg: key DE1997DCDE742AFA: public key "Launchpad PPA for MaxMind" imported
gpg: Total number processed: 1
gpg: imported: 1
gpg: no valid OpenPGP data found.当我执行命令apt update时,我得到的结果是:
Hit:1 http://security.debian.org/debian-security buster/updates InRelease
Hit:2 http://cdn-aws.deb.debian.org/debian buster InRelease
Hit:3 http://cdn-aws.deb.debian.org/debian buster-updates InRelease
Hit:4 http://cdn-aws.deb.debian.org/debian buster-backports InRelease
Ign:5 http://ppa.launchpad.net/maxmind/ppa/ubuntu impish InRelease
Err:6 http://ppa.launchpad.net/maxmind/ppa/ubuntu impish Release
404 Not Found [IP: 91.189.95.85 80]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/maxmind/ppa/ubuntu impish Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.由于这些错误,我不认为继续本教程是有用的。我需要你的宝贵帮助来纠正它们。
发布于 2021-07-22 10:44:01
如果您运行的是Debian,那么您只需安装geoip-bin和geoip-database,并且对于更新,您只需安装geoipupdate。它们都在标准的apt存储库中。您不需要添加maxmind存储库。
apt install geoip-bin geoip-database geoipupdate请注意,根据您的计划,您可能还需要用于perl、php、lua、apache lighttp等的其他包。既然你不想告诉我们你的想法,我就不能告诉你更多了。
那里有几个包。
root@linux:~# apt policy geoipupdate
geoipupdate:
Installiert: 3.1.1-1
Installationskandidat: 3.1.1-1
Versionstabelle:
*** 3.1.1-1 500
500 http://ftp.debian.org/debian buster/contrib amd64 Packages
100 /var/lib/dpkg/status
2.5.0-1~bpo9+1 100
100 http://ftp.debian.org/debian stretch-backports/contrib amd64 Packages
2.3.1-1 500
500 http://ftp.debian.org/debian stretch/contrib amd64 Packages标准的apt存储库包括:
deb http://ftp.debian.org/debian/ buster main contrib non-free
deb-src http://ftp.debian.org/debian/ buster main non-free
deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main non-free
deb http://ftp.debian.org/debian buster-backports main contrib
deb-src http://ftp.debian.org/debian buster-backports main contrib将它们添加到/etc/apt/Soures.list中,然后重试
发布于 2021-07-22 14:35:00
我想为已经安装在实例上的Mautic应用程序安装GeoIP。
当我执行命令apt install geoip-bin geoip-database geoipupdate时
我知道这是个错误
Reading package lists...
Done Building dependency tree
Reading state information...
Done E: Unable to locate package geoipupdate 我不是程序员,所以我不太明白我在做什么。我的目标是为Mautic应用程序安装GeoIP。
https://stackoverflow.com/questions/68475362
复制相似问题