阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

PostgreSQL数据库安装部署

416次阅读
没有评论

共计 10180 个字符,预计需要花费 26 分钟才能阅读完成。

一、postgresql 数据库部署

1、前往 postgresql 安装包的目录(这里我部署的是 10.5 的版本)

[root@web1 ~]# cd /package/
[root@web1 package]# ls
apache-tomcat-8.5.39.tar.gz  jdk-8u131-linux-x64.tar.gz  postgresql-10.5.tar.gz  redis-3.2.0.tar.gz
[root@web1 package]#

2、解压缩包

[root@web1 package]# tar xf postgresql-10.5.tar.gz
[root@web1 package]# ls
apache-tomcat-8.5.39.tar.gz  jdk-8u131-linux-x64.tar.gz  postgresql-10.5  postgresql-10.5.tar.gz  redis-3.2.0.tar.gz
[root@web1 package]#

3、进入解压后生成的目录文件进行编译

[root@web1 postgresql-10.5]# ./configure –prefix=/usr/local/pgsql-10.5
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking which template to use… linux
checking whether NLS is wanted… no
checking for default port number… 5432
checking for block size… 8kB
checking for segment size… 1GB
checking for WAL block size… 8kB
checking for WAL segment size… 16MB

4、提示如下信息是缺少包文件

checking for library containing readline… no
configure: error: readline library not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn’t looking in the proper directory.
Use –without-readline to disable readline support.

5、安装相应的包文件文件

[root@web1 postgresql-10.5]#yum install ncurses* readline* zlib* -y
######################################
[root@web1 postgresql-10.5]# rpm -aq ncurses* readline* zlib*
readline-devel-6.2-10.el7.x86_64
zlib-static-1.2.7-18.el7.x86_64
ncurses-libs-5.9-14.20130511.el7_4.x86_64
ncurses-devel-5.9-14.20130511.el7_4.x86_64
readline-static-6.2-10.el7.x86_64
zlib-devel-1.2.7-18.el7.x86_64
readline-6.2-10.el7.x86_64
ncurses-base-5.9-14.20130511.el7_4.noarch
ncurses-5.9-14.20130511.el7_4.x86_64
zlib-1.2.7-18.el7.x86_64
[root@web1 postgresql-10.5]#

6、安装完成后重新编译下

[root@web1 postgresql-10.5]# ./configure –prefix=/usr/local/pgsql-10.5
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking which template to use… linux
checking whether NLS is wanted… no
checking for default port number… 5432
checking for block size… 8kB
checking for segment size… 1GB
checking for WAL block size… 8kB
checking for WAL segment size… 16MB
checking for gcc… gcc

7、解析文件(在 postgresql-10.5 目录执行:make install),最后输出结果没提示异常【error】便可开始安装了

rm -f pg_regress.o && ln -s ../../../src/test/regress/pg_regress.o .
gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -Wl,–as-needed -Wl,-rpath,’/usr/local/pgsql-10.5/lib’,–enable-new-dtags  -lpgcommon -lpgport -lpthread -lz -lreadline -lrt -lcrypt -ldl
make[2]: Leaving directory `/package/postgresql-10.5/src/test/isolation’
make -C test/perl all
make[2]: Entering directory `/package/postgresql-10.5/src/test/perl’
make[2]: Nothing to be done for `all’.
make[2]: Leaving directory `/package/postgresql-10.5/src/test/perl’
make[1]: Leaving directory `/package/postgresql-10.5/src’
make -C config all
make[1]: Entering directory `/package/postgresql-10.5/config’
make[1]: Nothing to be done for `all’.
make[1]: Leaving directory `/package/postgresql-10.5/config’
All of PostgreSQL successfully made. Ready to install.

8、开始安装(在 postgresql-10.5 目录执行:make install),最后输出结果没提示异常【error】便表示安装成功

/bin/install -c -m 644 Makefile.global ‘/usr/local/pgsql-10.5/lib/pgxs/src/Makefile.global’
/bin/install -c -m 644 Makefile.port ‘/usr/local/pgsql-10.5/lib/pgxs/src/Makefile.port’
/bin/install -c -m 644 ./Makefile.shlib ‘/usr/local/pgsql-10.5/lib/pgxs/src/Makefile.shlib’
/bin/install -c -m 644 ./nls-global.mk ‘/usr/local/pgsql-10.5/lib/pgxs/src/nls-global.mk’
make[1]: Leaving directory `/package/postgresql-10.5/src’
make -C config install
make[1]: Entering directory `/package/postgresql-10.5/config’
/bin/mkdir -p ‘/usr/local/pgsql-10.5/lib/pgxs/config’
/bin/install -c -m 755 ./install-sh ‘/usr/local/pgsql-10.5/lib/pgxs/config/install-sh’
/bin/install -c -m 755 ./missing ‘/usr/local/pgsql-10.5/lib/pgxs/config/missing’
make[1]: Leaving directory `/package/postgresql-10.5/config’
PostgreSQL installation complete.

9、安装完成后可以看到在 /usr/local 目录上成了 pgsql-10.5 目录

[root@web1 postgresql-10.5]# ll /usr/local/ |grep pgsql-10.5
drwxr-xr-x  6 root root  56 May 23 18:06 pgsql-10.5
[root@web1 postgresql-10.5]#

10、创建用户及设置 /usr/local/pgsql-10.5 目录文件属主组

[root@web1 postgresql-10.5]# useradd postgres
[root@web1 postgresql-10.5]# chown -R postgres.postgres /usr/local/pgsql-10.5/
[root@web1 postgresql-10.5]# ll /usr/local/ |grep pgsql-10.5
drwxr-xr-x  6 postgres postgres  56 May 23 18:06 pgsql-10.5
[root@web1 postgresql-10.5]#

11、给 /usr/local/pgsql-10.5 目录设置软连接(方便查看和管理吧 ….)

[root@web1 postgresql-10.5]# ln -s /usr/local/pgsql-10.5/ /usr/local/pgsql
[root@web1 postgresql-10.5]# ll /usr/local/pgsql
lrwxrwxrwx 1 root root 22 May 23 18:15 /usr/local/pgsql -> /usr/local/pgsql-10.5/
[root@web1 postgresql-10.5]#

12、进入刚创建的 postgres 用户

[root@web1 postgresql-10.5]# su postgres
[postgres@web1 postgresql-10.5]$

13、设置环境变量(注意路径)

[postgres@web1 ~]$ vim ~/.bash_profile

# .bash_profile

# Get the aliases and functions
if [-f ~/.bashrc]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH=$PATH:/usr/local/pgsql-10.5/bin
PGDATA=/usr/local/pgsql-10.5/data
export PGDATA
export PATH

14、当前生效

[postgres@web1 ~]$ source ~/.bash_profile
[postgres@web1 ~]$

15、测试

[postgres@web1 ~]$ which psql
/usr/local/pgsql-10.5/bin/psql
[postgres@web1 ~]$ psql -V
psql (PostgreSQL) 10.5

16、初始化数据库(initdb –help 查看讲情),指定库文件路径

[postgres@web1 ~]$ initdb /usr/local/pgsql-10.5/data
The files belonging to this database system will be owned by user “postgres”.
This user must also own the server process.

The database cluster will be initialized with locale “en_US.UTF-8”.
The default database encoding has accordingly been set to “UTF8”.
The default text search configuration will be set to “english”.

Data page checksums are disabled.

creating directory /usr/local/pgsql-10.5/data … ok
creating subdirectories … ok
selecting default max_connections … 100
selecting default shared_buffers … 128MB
selecting dynamic shared memory implementation … posix
creating configuration files … ok
running bootstrap script … ok
performing post-bootstrap initialization … ok
syncing data to disk … ok

WARNING: enabling “trust” authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
–auth-local and –auth-host, the next time you run initdb.

Success. You can now start the database server using:

    pg_ctl -D /usr/local/pgsql-10.5/data -l logfile start

[postgres@web1 ~]$

*** 在此就已经部署成功了,现在要做的就是修改下配置文件,优化下 ***

17、前往文件安装所在地,修改 pg_hba.conf 配置文件

[postgres@web1 data]$ cp pg_hba.conf pg_hba.conf.`date +%F`
[postgres@web1 data]$ vim pg_hba.conf
#######################################
# TYPE  DATABASE        USER            ADDRESS                METHOD

# “local” is for Unix domain socket connections only
local  all            all                                    trust
# IPv4 local connections:
#host    all            all            127.0.0.1/32            trust
host    all            all            0.0.0.0/0              md5    #所有 ip 都可以通过密码连接
# IPv6 local connections:
host    all            all            ::1/128                trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
local  replication    all                                    trust
host    replication    all            127.0.0.1/32            trust
######################################

18、前往文件安装所在地,修改 postgresql.conf 配置文件

[postgres@web1 data]$ cd /usr/local/pgsql/data/
[postgres@web1 data]$ cp postgresql.conf postgresql.conf.`date +%F`
[postgres@web1 data]$ vim postgresql.conf
#########################################
# – Connection Settings –

listen_addresses = ‘*’  #为了方便,监听所有# what IP address(es) to listen on;
                                        # comma-separated list of addresses;
                                        # defaults to ‘localhost’; use ‘*’ for all
                                        # (change requires restart)
#port = 5432                            # (change requires restart)
max_connections = 100                  # (change requires restart)
#superuser_reserved_connections = 3    # (change requires restart)
#unix_socket_directories = ‘/tmp’      # comma-separated list of directories
                                        # (change requires restart)
#unix_socket_group = ”                # (change requires restart)
#unix_socket_permissions = 0777        # begin with 0 to use octal notation
#########################################

19、创建 log 目录用于存放开机日志,及启动数据库

[postgres@web1 data]$ mkdir /usr/local/pgsql/log
[postgres@web1 data]$ pg_ctl start -l /usr/local/pgsql-10.5/log/pg_server.log
waiting for server to start…. done
server started
[postgres@web1 data]$

20、检查是否启动,可以看日志

[postgres@web1 data]$ lsof -i:5432
COMMAND    PID    USER  FD  TYPE DEVICE SIZE/OFF NODE NAME
postgres 25479 postgres    3u  IPv4  50990      0t0  TCP *:postgres (LISTEN)
postgres 25479 postgres    4u  IPv6  50991      0t0  TCP *:postgres (LISTEN)
[postgres@web1 data]$ netstat -lnutp|grep postgres
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp        0      0 0.0.0.0:5432            0.0.0.0:*              LISTEN      25479/postgres     
tcp6      0      0 :::5432                :::*                    LISTEN      25479/postgres     
[postgres@web1 data]$ ps -ef|grep postgres
root    24060  1297  0 18:17 pts/0    00:00:00 su postgres
postgres 24061 24060  0 18:17 pts/0    00:00:00 bash
postgres 25479    1  0 18:45 pts/0    00:00:00 /usr/local/pgsql-10.5/bin/postgres
postgres 25481 25479  0 18:45 ?        00:00:00 postgres: checkpointer process 
postgres 25482 25479  0 18:45 ?        00:00:00 postgres: writer process 
postgres 25483 25479  0 18:45 ?        00:00:00 postgres: wal writer process 
postgres 25484 25479  0 18:45 ?        00:00:00 postgres: autovacuum launcher process 
postgres 25485 25479  0 18:45 ?        00:00:00 postgres: stats collector process 
postgres 25486 25479  0 18:45 ?        00:00:00 postgres: bgworker: logical replication launcher 
postgres 25543 24061  0 18:46 pts/0    00:00:00 ps -ef
postgres 25544 24061  0 18:46 pts/0    00:00:00 grep –color=auto postgres
[postgres@web1 data]$

21、进入库的一些小操作

[postgres@web1 data]$ psql    #进入库
psql (10.5)
Type “help” for help.

postgres=# \password    #设置密码
Enter new password:
Enter it again:
postgres=# CREATE DATABASE name;      #创建库
CREATE DATABASE
postgres=# \du    #查看用户
                                  List of roles
 Role name |                        Attributes                        | Member of
———–+————————————————————+———–
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

postgres=#
postgres=# \l    #查看数据库列表
                                  List of databases
  Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges 
———–+———-+———-+————-+————-+———————–
 name      | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |
 postgres  | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |
 template0 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
          |          |          |            |            | postgres=CTc/postgres
 template1 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
          |          |          |            |            | postgres=CTc/postgres
(4 rows)

postgres=#
postgres=# create user test superuser password ‘123456’;    #创建用户及密码
CREATE ROLE
postgres=#

到此就大致部署完了。

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计10180字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19348
评论数
4
阅读量
7802020
文章搜索
热门文章
开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南 大家好,我是星哥。之前介绍了腾讯云的 Code...
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板 1Panel:小白轻松构建 Web 服务与面板加固指南 哈喽,我是星哥,经常有人问我不...
我把用了20年的360安全卫士卸载了

我把用了20年的360安全卫士卸载了

我把用了 20 年的 360 安全卫士卸载了 是的,正如标题你看到的。 原因 偷摸安装自家的软件 莫名其妙安装...
星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛 NAS-3:安装飞牛 NAS 后的很有必要的操作 前言 如果你已经有了飞牛 NAS 系统,之前...
阿里云CDN
阿里云CDN-提高用户访问的响应速度和成功率
随机文章
星哥带你玩飞牛NAS-1:安装飞牛NAS

星哥带你玩飞牛NAS-1:安装飞牛NAS

星哥带你玩飞牛 NAS-1:安装飞牛 NAS 前言 在家庭和小型工作室场景中,NAS(Network Atta...
告别Notion焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁”

告别Notion焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁”

  告别 Notion 焦虑!这款全平台开源加密笔记神器,让你的隐私真正“上锁” 引言 在数字笔记工...
自己手撸一个AI智能体—跟创业大佬对话

自己手撸一个AI智能体—跟创业大佬对话

自己手撸一个 AI 智能体 — 跟创业大佬对话 前言 智能体(Agent)已经成为创业者和技术人绕...
开源神器组合!1Panel面板+Halo助你轻松打造个人/企业内容中心

开源神器组合!1Panel面板+Halo助你轻松打造个人/企业内容中心

开源神器组合!1Panel 面板 +Halo 助你轻松打造个人 / 企业内容中心 前言 大家好,我是星哥,之前...
星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛NAS-14:解锁公网自由!Lucky功能工具安装使用保姆级教程

星哥带你玩飞牛 NAS-14:解锁公网自由!Lucky 功能工具安装使用保姆级教程 作为 NAS 玩家,咱们最...

免费图片视频管理工具让灵感库告别混乱

一言一句话
-「
手气不错
还在找免费服务器?无广告免费主机,新手也能轻松上手!

还在找免费服务器?无广告免费主机,新手也能轻松上手!

还在找免费服务器?无广告免费主机,新手也能轻松上手! 前言 对于个人开发者、建站新手或是想搭建测试站点的从业者...
星哥带你玩飞牛NAS-16:不再错过公众号更新,飞牛NAS搭建RSS

星哥带你玩飞牛NAS-16:不再错过公众号更新,飞牛NAS搭建RSS

  星哥带你玩飞牛 NAS-16:不再错过公众号更新,飞牛 NAS 搭建 RSS 对于经常关注多个微...
星哥带你玩飞牛 NAS-9:全能网盘搜索工具 13 种云盘一键搞定!

星哥带你玩飞牛 NAS-9:全能网盘搜索工具 13 种云盘一键搞定!

星哥带你玩飞牛 NAS-9:全能网盘搜索工具 13 种云盘一键搞定! 前言 作为 NAS 玩家,你是否总被这些...
零成本上线!用 Hugging Face免费服务器+Docker 快速部署HertzBeat 监控平台

零成本上线!用 Hugging Face免费服务器+Docker 快速部署HertzBeat 监控平台

零成本上线!用 Hugging Face 免费服务器 +Docker 快速部署 HertzBeat 监控平台 ...
开源MoneyPrinterTurbo 利用AI大模型,一键生成高清短视频!

开源MoneyPrinterTurbo 利用AI大模型,一键生成高清短视频!

  开源 MoneyPrinterTurbo 利用 AI 大模型,一键生成高清短视频! 在短视频内容...