postgres14一键安装脚本分享(shell和python)

本文涉及的产品
云原生数据库 PolarDB MySQL 版,通用型 2核4GB 50GB
云原生数据库 PolarDB PostgreSQL 版,标准版 2核4GB 50GB
简介: postgres14一键安装脚本分享(shell和python)

今天介绍两种安装postgresql的脚本。第一部分是python,第二部分是shell。

前期准备工作

安装包上传至packages目录下,脚本和packages同层级即可,本次只分享rpm包安装,二进制可以根据脚本内容进行修改。安装包链接如下:

一、python脚本

#!/usr/bin/python

# -*- coding: UTF-8 -*-

import os

import time

def install():

   """

   postgresql14-14.2安装

   sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

   yum install -y --downloadonly --downloaddir=./packages  postgresql14-server

   --

   rpm -Uvh --force --nodeps ./packages/*.rpm

   sudo /usr/pgsql-14/bin/postgresql-14-setup initdb

   sudo systemctl enable postgresql-14

   sudo systemctl start postgresql-14

   sudo  -H  -u postgres psql -c "create user ceshi with password '123456';"

   sudo  -H  -u postgres psql -c "create database test_db owner ceshi;"

   sudo  -H  -u postgres psql -c "grant all privileges on database test_db to ceshi;"

   :return:

   """

   os.system("rpm -Uvh --force --nodeps ./packages/*.rpm")

   os.system("sudo /usr/pgsql-14/bin/postgresql-14-setup initdb")

   os.system("sudo systemctl enable postgresql-14")

   os.system("sudo systemctl start postgresql-14")

   os.system("sudo  -H  -u postgres psql -c \"create user ceshi with password '123456';\"")

   os.system("sudo  -H  -u postgres psql -c \"create database test_db owner ceshi;\"")

   os.system("sudo  -H  -u postgres psql -c \"grant all privileges on database test_db to ceshi;\"")

def config_postgresql():

   """

   配置postgresql14-14.2

   vi /var/lib/pgsql/14/data/postgresql.conf

   #listen_addresses = 'localhost'

   listen_addresses = '*'

   vi /var/lib/pgsql/14/data/pg_hba.conf

   host    all            all            0.0.0.0/0              md5

   :return:

   """

   with open("/var/lib/pgsql/14/data/postgresql.conf", "r+") as conf_file:

       file_context = conf_file.read()

       file_context = file_context.replace("daemonize no", "daemonize yes").replace("#listen_addresses = 'localhost'",

                                                                                   "listen_addresses = '*'")

       conf_file.write(file_context)

   with open("/var/lib/pgsql/14/data/pg_hba.conf", "a") as conf_file:

       conf_file.write("host    all            all            0.0.0.0/0              md5")

   os.system("sudo systemctl restart postgresql-14")

def detect():

   """

   检测是否安装成功

   :return:

   """

   time.sleep(5)

   return True if os.popen("systemctl status postgresql-14").read().find(

       "active (running)") > 0 else False

def prompt_fail():

   """

   安装失败后提示

   :return:

   """

   print """

   \033[5;31;40m 安装失败 \033[0m

   """

def prompt_success():

   """

   安装成功后提示

   :return:

   """

   print """

   \033[5;32;40m 恭喜postgresql14-14.2安装成功!\033[0m

   使用前注意:

       测试前可以先关闭防火墙:systemctl stop firewalld

     使用sudo权限的非root用户去执行,因为root用户不允许创建数据库账号和库。

       postgresql14 以添加默认账号、开启远程连接、并设置好开机自启:

       账号:ceshi

       密码:123456

       默认数据库:test_db

       端口:5432

       配置文件路径:/var/lib/pgsql/14/data/

   停止命令:systemctl stop postgresql-14

   启动命令:systemctl start postgresql-14

   重启命令:systemctl restart postgresql-14

   """

if __name__ == '__main__':

   install()

   config_postgresql()

   if detect():

       prompt_success()

   else:

       prompt_fail()

切换目录下添加执行权限X

chmod +x install.py

一键安装

./install.py

二、shell脚本

#!/bin/bash

# 检查是否以 root 用户运行

if [ "$EUID" -ne 0 ]; then

 echo "请以非root的sudo用户运行此脚本。"

 exit 1

fi

# 安装必要的依赖

echo "安装依赖包..."

yum install -y epel-release

yum install -y wget vim

# 下载并安装 PostgreSQL 官方YUM repository 配置包

echo "添加 PostgreSQL YUM repository..."

yum install -y --downloadonly --downloaddir=./packages  postgresql14-server

# 安装 PostgreSQL

echo "安装 PostgreSQL 14"

rpm -Uvh --force --nodeps ./packages/*.rpm

# 初始化数据库集群

echo "初始化数据库..."

sudo /usr/pgsql-14/bin/postgresql-14-setup initdb

# 启动并启用 PostgreSQL 服务

echo "启动并启用 PostgreSQL 服务..."

sudo systemctl enable postgresql-14

sudo systemctl start postgresql-14

# 创建一个测试用户和数据库

echo "创建测试用户和数据库..."

sudo -u postgres psql -c "create user myuser with password 'mypassword';"

sudo -u postgres psql -c "create database mydb owner myuser;"

# 设置postgresql.conf 和 pg_hba.conf 的基本配置

echo "配置 postgresql.conf 和 pg_hba.conf..."

PG_CONF_DIR="/var/lib/pgsql/$PG_VERSION/data"

cat >> $PG_CONF_DIR/postgresql.conf <<EOL

listen_addresses = '*'

EOL

cat >> $PG_CONF_DIR/pg_hba.conf <<EOL

host    all            all            0.0.0.0/0              md5

EOL

# 重启 PostgreSQL 服务以应用配置更改

echo "重启 PostgreSQL 服务..."

systemctl restart postgresql-14

# 提示安装完成

echo "PostgreSQL $PG_VERSION 安装完成并已启动。"

echo "可以使用命令 'sudo -u postgres psql' 连接到 PostgreSQL 数据库。"

赋予install.sh执行权限

chmod +x install.sh

一键安装

sh -x install.sh

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
相关文章
|
1月前
|
IDE 开发工具 索引
在Python中安装第三方库
在Python中安装第三方库
464 30
|
1月前
|
数据采集 监控 数据挖掘
Python自动化脚本:高效办公新助手###
本文将带你走进Python自动化脚本的奇妙世界,探索其在提升办公效率中的强大潜力。随着信息技术的飞速发展,重复性工作逐渐被自动化工具取代。Python作为一门简洁而强大的编程语言,凭借其丰富的库支持和易学易用的特点,成为编写自动化脚本的首选。无论是数据处理、文件管理还是网页爬虫,Python都能游刃有余地完成任务,极大地减轻了人工操作的负担。接下来,让我们一起领略Python自动化脚本的魅力,开启高效办公的新篇章。 ###
|
5天前
|
Linux Python
Linux 安装python3.7.6
本教程介绍在Linux系统上安装Python 3.7.6的步骤。首先使用`yum`安装依赖环境,包括zlib、openssl等开发库。接着通过`wget`下载Python 3.7.6源码包并解压。创建目标文件夹`/usr/local/python3`后,进入解压目录执行配置、编译和安装命令。最后设置软链接,使`python3`和`pip3`命令生效。
|
16天前
|
数据采集 存储 监控
21个Python脚本自动执行日常任务(2)
21个Python脚本自动执行日常任务(2)
59 7
21个Python脚本自动执行日常任务(2)
|
6天前
|
数据挖掘 vr&ar C++
让UE自动运行Python脚本:实现与实例解析
本文介绍如何配置Unreal Engine(UE)以自动运行Python脚本,提高开发效率。通过安装Python、配置UE环境及使用第三方插件,实现Python与UE的集成。结合蓝图和C++示例,展示自动化任务处理、关卡生成及数据分析等应用场景。
47 5
|
23天前
|
Android开发 开发者 Python
通过标签清理微信好友:Python自动化脚本解析
微信已成为日常生活中的重要社交工具,但随着使用时间增长,好友列表可能变得臃肿。本文介绍了一个基于 Python 的自动化脚本,利用 `uiautomator2` 库,通过模拟用户操作实现根据标签批量清理微信好友的功能。脚本包括环境准备、类定义、方法实现等部分,详细解析了如何通过标签筛选并删除好友,适合需要批量管理微信好友的用户。
33 7
|
28天前
|
监控 数据挖掘 数据安全/隐私保护
Python脚本:自动化下载视频的日志记录
Python脚本:自动化下载视频的日志记录
|
29天前
|
存储 JSON 网络安全
使用 EFS 在 AWS Lambda 上安装 Python 依赖项
使用 aws lambda 时,开发人员面临的常见挑战之一是管理大型 python 依赖项。
30 1
|
1月前
|
Ubuntu Linux iOS开发
安装Python
安装 Python 是相对简单的过程,但需要根据不同的操作系统选择合适的方法。同时,合理使用虚拟环境可以更好地管理项目的依赖和环境,提高开发效率。希望这些步骤和注意事项能帮助你顺利安装 Python。
|
2月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
115 1