web-dev-qa-db-ja.com

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
3
Bryant

コメント者が指摘したように、universeパッケージは有効になっていません。 add-apt-repositoryを使用して有効化すると、トリックが行われました。

Sudo add-apt-repository universe

3
Bryant

「Ubuntu 18.04 LTS on Windows 10」で同じ問題が発生し、受け入れられた回答が機能しませんが、 this 回答が機能しました。それは他の誰かを助けるかもしれません。

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