答案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 开始)