入门 PSQL在Linux上的入门指南(psqllinux)

PostgreSQL是一款强大、免费、开源的关系数据库,在Linux上有着广泛的应用。本文将向大家讲解如何在Linux上安装和使用PostgreSQL,从而为您节约一些宝贵的时间和精力。

### 一、安装 PostgreSQL

要安装PostgreSQL,首先确保您的Linux系统上已经安装了必需的软件包。添加PostgreSQL源,对于Ubuntu、CentOS和Fedora的步骤如下:

#### (1)Ubuntu

$ sudo su
# sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
# wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | apt-key add -
# apt update
# apt -y install postgresql-9.6

##### (2) CentOS

$ sudo su
# yum -y install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
# yum -y install postgresql96-server

##### (3) Fedora

$ sudo su
# dnf -y install https://download.postgresql.org/pub/repos/yum/9.6/fedora/fedora-29-x86_64/pgdg-fedora96-9.6-3.noarch.rpm
# dnf -y install postgresql96-server

### 二、建立 PostgreSQL 数据库

安装完PostgreSQL后,可以通过下列命令建立数据库和用户:

# useradd postgres
# passwd postgres
# su - postgres
$ initdb -D /var/lib/pgsql/data
$ createuser testuser -P # 建立用户名为 testuser 的用户
$ createdb -Otestuser testdb # 建立用户名为 testuser的数据库 testdb

### 三、管理 PostgreSQL 数据库

要管理PostgreSQL数据库,可以使用psql命令行工具。首先我们可以用psql连接到PostgreSQL数据库:

$ psql -d testdb -Utestuser

还可以使用psql命令管理数据库:

“`2

$ psql -d testdb -c “CREATE TABLE contacts (name VARCHAR(50),email VARCHAR(50),phone VARCHAR(50));”


最后,我们可以使用psql查询数据库:

$ psql -d testdb -c “SELECT * FROM contacts;”


### 四、PostgreSQL的实践

最后,我们来实践一下,看看如何使用PostgreSQL。我们可以使用脚本来添加一些测试数据:

#!/bin/bash

db=”testdb”

user=”testuser”

connect=”-U $user -d $db”

psql $connect -c “TRUNCATE contacts;”

psql $connect -c “INSERT INTO contacts(name,email,phone)VALUES

(‘Tom’,’tom@example.com’,’123-456-7890′),

(‘John’,’john@example.com’,’098-765-4321′);”

psql $connect -c “SELECT * FROM contacts ORDER BY name;”


使用此脚本,我们可以清空联系人表,添加两个联系人,然后按姓名排序查询所有联系人:

$ sh script.sh

name | email | phone

Tom | tom@example.com | 123-456-7890

John | john@example.com | 098-765-4321


通过本文,您已经学会了安装、建立、管理和使用PostgreSQL的基本步骤,一个简单的例子也工作良好,请继续学习更多内容,探索更多可能性。

数据运维技术 » 入门 PSQL在Linux上的入门指南(psqllinux)