二. PostgreSQL 11 的安装与配置

2.1 安装与启动PostgreSQL 11

安装与配置可参考官网:https://www.pgadmin.org/

2.2 pgAdmin 4的基本操作
2.3 使用psql工具登录PostgreSQL数据库
2.4 Linux系统下安装Postgresql 11

Linux操作系统的发行版比较多。本章节以常用的Linux系统CentOS 7操作系统为例,讲解如何安装Postgresql 11。
步骤1:创建postgres用户。
[root@VMTest postgresql11]# useradd -g postgres post123
步骤2:下载rpm离线安装包。下载地址如下:
https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/
需要下载的安装包如下:
postgresql11-11.2-1PGDG.rhel7.x86_64.rpm
postgresql11-libs-11.2-1PGDG.rhel7.x86_64.rpm
postgresql11-server-11.2-1PGDG.rhel7.x86_64.rpm
步骤3:使用rpm -ivh安装Postgresql 11的rpm包。
[root@VMTest ~]# cd /home/lpf/soft/postgresql11/ #安装包存放路径
[root@VMTest ~]# systemctl start postgresql-11 #启动postgresq
步骤4:如果要卸载Postgresql 11,则需要先停止Postgresql服务,然后执行以下命令即可:
[root@VMTest ~]# rpm -qe postgresql11-libs-11.2-1PGDG.rhel7.x86_64
[root@VMTest ~]# rpm -qe postgresql11-11.2-1PGDG.rhel7.x86_64
[root@VMTest ~]# rpm -qe postgresql11-server-11.2-1PGDG.rhel7.x86_64
步骤5:初始化数据库。
[root@VMTest ~]# /usr/pgsql-11/bin/postgresql-11-setup initdb
Initializing database … OK
步骤6:设置开机启动数据库。
[root@VMTest ~]# systemctl enable postgresql-11 #设置开机启动
[root@VMTest ~]# systemctl start postgresql-11 #启动postgresq

2.5 常见问题及解答
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐