• 7 PostgreSQL绿色版


    本文目标

    制作PostgreSQL-15.1绿色版,简化以后搭建测试环境。
    内置数据库test
    内置用户test,密码test,可远程登陆,管理员权限
    ./start.sh 启动
    ./stop.sh 停止
    ./cmd.sh test用户和库的命令行
    ./admin.sh 超级用户权限命令行

    yum安装

    yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    yum install -y postgresql15-server
    
    • 1
    • 2

    提取绿色版

    mkdir postgresql-green
    cd postgresql-green
    cp -rf /usr/pgsql-15/* .
    
    • 1
    • 2
    • 3

    初始化数据库

    mkdir data
    ./bin/initdb -D ./data -E UTF8

    修改data/pg_hba.conf,增加

    host all all 0.0.0.0/0 md5

    修改data/postgresql.conf

    listen_addresses = ‘*’
    port = 6432

    启动数据库

    ./bin/pg_ctl -D ./data -l logfile start

    进入数据库命令行

    ./bin/psql -p 6432 postgres

    设置数据库默认内容

    postgres=# create database test;
    CREATE DATABASE
    postgres=# create user test with password 'test';
    CREATE ROLE
    postgres=# GRANT ALL PRIVILEGES ON DATABASE test to test;
    GRANT
    postgres=# alter user test superuser;
    ALTER ROLE
    postgres=# \q
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    居然发现postgresql-15中比旧版本少个字段,搞得Navicat-15报错,用16才正常。

    创建命令脚本

    [yinyx@localhost postgresql-green]$ cat start.sh
    source ./env
    ./bin/pg_ctl -D ./data -l logfile start
    [yinyx@localhost postgresql-green]$ cat stop.sh
    source ./env
    ./bin/pg_ctl -D ./data -l logfile stop
    [yinyx@localhost postgresql-green]$ cat cmd.sh
    source ./env
    PGPASSWORD=test
    ./bin/psql -h 127.0.0.1 -p 6432 -U test test
    [yinyx@localhost postgresql-green]$ cat admin.sh
    source ./env
    ./bin/psql -h 127.0.0.1 -p 6432 postgres
    [yinyx@localhost postgresql-green]$ cat env
    
    export PGHOME=`pwd`
    export PGDATA=$PGHOME/data
    export LD_LIBRARY_PATH=$PGHOME/lib:$LD_LIBRARY_PATH
    
    [yinyx@localhost postgresql-green]$ 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    打包绿色版

    将libzstd.so.1放入lib目录
    修改data/postgresql.conf
    unix_socket_directories = ‘/tmp’
    ./stop.sh停止数据库
    打包压缩文件
    tar cfz postgresql-green.tar.gz postgresql-green
    安装一台的CentOS7,mini安装,1C1G,上传green,解压启动,so easy!

  • 相关阅读:
    【Java面试题】List如何一边遍历,一边删除?
    电容式雨雪传感器
    第一章 Redis基础
    MySQL 常用函数
    uni-app父子组件传递数据(更新中)
    音频库-bass使用
    java设计模式的总结
    视频汇聚/视频云存储/视频监控管理平台EasyCVR启动时打印starting server:listen tcp,该如何解决?
    centos7安装cdh6.3.2-附带安装包
    qian‘kun微服务配置vue3.2+ts+vite子应用教程
  • 原文地址:https://blog.csdn.net/hryyx/article/details/128166441