Ubuntu 18.04 Bionic Beaver 上的 Pgadmin4 安装失败

Ubuntu 18.04 Bionic Beaver 上的 Pgadmin4 安装失败

我正在尝试在 Ubuntu 18.04 Bionic Beaver 上安装 pgadmin4,但每次我尝试运行

sudo apt install pgadmin4 pgadmin4-apache2

它返回以下错误:

Building dependency tree
Reading state information... Done
E: Unable to locate package pgadmin4-apache2

我阅读了几乎所有可用的内容(例如链接1链接2),但我总是收到上述错误。

我不想使用 Docker 安装它。有人能提供解决方案吗?谢谢!

答案1

没有pgadmin4-apache2包裹。从来没有过。

然而,上游 Postgres 存储库具有一项pgadmin4-web功能,可以使其成为类似 Web 服务器的功能并配置 Web 服务器组件。

来自pgadmin4 下载/存储库页面以下是使用其存储库的说明:

#
# Setup the repository
#

# Install the public key for the repository (if not done previously):
sudo curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add

# Create the repository configuration file:
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'

#
# Install pgAdmin
#

# Install for both desktop and web modes:
sudo apt install pgadmin4

# Install for desktop mode only:
sudo apt install pgadmin4-desktop

# Install for web mode only: 
sudo apt install pgadmin4-web 

# Configure the webserver, if you installed pgadmin4-web:
sudo /usr/pgadmin4/bin/setup-web.sh

桌面模式就好像您是唯一的用户,并将其用作系统上的桌面 GUI 来维护多个 postgres 服务器,并禁用 pgAdmin 组件上的身份验证,因此您没有可在 pgAdmin 组件上配置的用户等。

Web 模式是“服务器”模式,安装后其工作方式与 phpMyAdmin 类似,但不包含 Postgres 内容。

安装您想要的任一模式,但如果您将其配置为由网络服务器提供服务,pgadmin4-web则您需要运行配置程序,如其说明的最后一行所列。

在撰写本文时,这适用于以下非 EOL 且仍受支持的 Ubuntu 版本

  • Ubuntu 18.04(仿生)
  • Ubuntu 20.04(焦点)
  • Ubuntu 20.10(Groovy,从 v4.30 开始)

相关内容