18.04 服务器-无法找到包 redis-server

18.04 服务器-无法找到包 redis-server

我安装了全新安装的 18.04 服务器。该软件包redis-server似乎无法安装。我不确定为什么:

$ sudo apt install redis-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package redis-server

该包似乎不存在:

$ sudo apt-cache search redis
miscfiles - Dictionaries and other interesting files
python-redis - Persistent key-value database with network interface (Python library)
resource-agents - Cluster Resource Agents

我已经运行了apt update。我猜它缺少软件包存储库,但由于这是全新安装,我不确定为什么会缺少一个,或者如何修复它。

root@:/etc/newrelic# sudo apt-get install nri-redis 
Reading package lists... Done 
Building dependency tree 
Reading state information... Done 
E: Unable to locate package nri-redis

答案1

正如评论者指出的那样,该universe软件包未启用。使用 add-apt-repository 启用成功了:

sudo add-apt-repository universe

答案2

我在“Windows 10 上的 Ubuntu 18.04 LTS”上遇到了同样的问题,并且接受的答案对我不起作用,但是答案有效。它可能会帮助别人。

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

相关内容