如何在 Ubuntu 16.04 上安装 PostgreSQL

在本教程中,我们将向您展示如何在您的 Ubuntu 16.04 服务器上安装和配置 PostgreSQL。 对于那些不知道的人,PostgreSQL 是一个免费的、开源的对象关系数据库管理系统 (object-RDBMS),类似于 MySQL,并且符合标准且可扩展。 它通常用作 Web 和移动应用程序的后端。 PostgreSQL,或昵称“Postgres”,与修订版一起采用 ANSI/ISO SQL 标准。

本文假设您至少具备 Linux 的基本知识,知道如何使用 shell,最重要的是,您将网站托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户下运行,如果不是,您可能需要添加 ‘sudo‘ 到命令以获取 root 权限。 我将向您展示在 Ubuntu 16.04 (Xenial Xerus) 服务器上逐步安装 PostgreSQL。

先决条件

  • 运行以下操作系统之一的服务器:Ubuntu 16.04 (Xenial Xerus)。
  • 建议您使用全新的操作系统安装来防止任何潜在问题。
  • 对服务器的 SSH 访问(或者如果您在桌面上,则只需打开终端)。
  • 一种 non-root sudo user或访问 root user. 我们建议充当 non-root sudo user,但是,如果您在充当 root 时不小心,可能会损害您的系统。

在 Ubuntu 16.04 上安装 PostgreSQL

步骤 1. 首先,通过运行以下命令确保所有系统包都是最新的 apt-get 终端中的命令。

sudo apt-get update sudo apt-get upgrade

步骤 2. 安装 PostgreSQL 服务器。

PostgreSQL 在默认存储库中可用。 因此,从终端输入以下命令进行安装:

apt-get install postgresql postgresql-contrib phppgadmin

步骤 3. 访问 PostgreSQL 命令提示符。

安装 PostgreSQL 数据库服务器后,默认情况下,它会创建一个角色为“postgres”的用户“postgres”。 它还创建一个具有相同名称“postgres”的系统帐户。 因此,要连接到 postgres 服务器,请以用户 postgres 登录到您的系统并连接数据库:

su - postgres psql

现在您已登录到 PostgreSQL 数据库服务器。 要检查登录信息,请从数据库命令提示符使用以下命令:

postgres-# conninfo

要断开与 PostgreSQL 数据库命令提示符的连接,只需键入以下命令并按 Enter。 它会让你回到 Ubuntu 命令提示符:

postgres-# q

创建一个新的用户和数据库:

### For example, let us create a new user called “idroot” with password “idrootnet”, and database called “idrootdb”. ### sudo -u postgres createuser -D -A -P idroot sudo -u postgres createdb -O idroot idrootdb

步骤 4. 为 phpPgAdmin 配置 Apache2。

phpPgAdmin 是一个基于 Web 的 PostgreSQL 管理工具。 它非常适合 PostgreSQL DBA、新手和托管服务。 您需要为 phpPgAdmin 配置 apache。 编辑文件 /etc/apache2/conf-available/phppgadmin.conf

nano /etc/apache2/conf-available/phppgadmin.conf

通过在行前添加 # 注释掉 #Require local 行并在行下方添加 allow from all 以便您可以从浏览器访问:

步骤 5. 配置 phpPgAdmin。

接下来,编辑文件 /etc/phppgadmin/config.inc.php:

nano /etc/phppgadmin/config.inc.php

现在更改以下选项:

$conf[‘extra_login_security'] = true; to $conf[‘extra_login_security'] = false;

现在,我们可以重新启动 Apache 和 phpPgAdmin 以便进行更改:

systemctl restart postgresql systemctl restart apache2 systemctl enable postgresql systemctl enable apache2

步骤 6. 访问 phpPgAdmin。

默认情况下,phpPgAdmin 将在 HTTP 端口 80 上可用。 打开您喜欢的浏览器并导航到 https://your-domain.com/phppgadmin 或者 https://server-ip/phppgadmin. 如果您使用防火墙,请打开端口 80 以启用对控制面板的访问。

在 Ubuntu 16.04 上安装 PostgreSQL

恭喜! 您已成功安装 PostgreSQL 服务器。 感谢您使用本教程在 Ubuntu 16.04 (Xenial Xerus) 系统中安装 PostgreSQL。 如需更多帮助或有用信息,我们建议您查看 PostgreSQL 官方网站.

Save