PostgreSQL安装和开启SSL加密连接【配置单/双向认证】




#!/bin/bash
 
# 安装PostgreSQL
sudo apt-get update
sudo apt-get install -y postgresql postgresql-contrib
 
# 启用SSL加密连接
# 创建SSL目录和证书
sudo mkdir -p /etc/postgresql/ssl
cd /etc/postgresql/ssl
 
# 生成服务器私钥和证书签名请求(CSR)
sudo openssl req -new -text -out server.csr -keyout server.key -subj "/CN=PostgreSQL Server/O=DB Admin"
 
# 生成自签名证书
sudo openssl x509 -req -in server.csr -text -signkey server.key -out server.crt
 
# 更新PostgreSQL配置以使用SSL
sudo sh -c 'echo "ssl = on" >> /etc/postgresql/12/main/postgresql.conf'
sudo sh -c 'echo "ssl_cert_file = '/etc/postgresql/ssl/server.crt'" >> /etc/postgresql/12/main/postgresql.conf'
sudo sh -c 'echo "ssl_key_file = '/etc/postgresql/ssl/server.key'" >> /etc/postgresql/12/main/postgresql.conf'
 
# 重启PostgreSQL以应用配置更改
sudo service postgresql restart
 
# 配置客户端SSL证书(双向认证的一部分)
# 首先,将服务器的CA证书复制到客户端
sudo cp /etc/postgresql/ssl/server.crt /home/user/.postgresql/
 
# 然后,编辑`pg_hba.conf`以启用双向SSL验证
sudo sh -c 'echo "hostssl all all 0.0.0.0/0 cert" >> /etc/postgresql/12/main/pg_hba.conf'
 
# 重启PostgreSQL以应用pg_hba.conf更改
sudo service postgresql restart
 
# 客户端连接时使用SSL
psql "sslmode=verify-full sslrootcert=/home/user/.postgresql/server.crt dbname=mydb user=myuser"

这个脚本展示了如何在Ubuntu系统上安装PostgreSQL,并配置SSL加密连接。它还演示了如何生成SSL证书,如何修改PostgreSQL配置以启用SSL,以及如何配置pg_hba.conf来要求双向SSL客户端认证。最后,提供了一个使用SSL模式的psql连接示例。

评论已关闭

推荐阅读

Vue中使用mind-map实现在线思维导图
2024年08月04日
VUE
Web前端最全Vue实现免密登录跳转的方式_vue怎么样不登录返回首页,最强技术实现
2024年08月04日
VUE
vue3 项目搭建教程(基于create-vue,vite,Vite + Vue)
2024年08月04日
VUE
Vue-颜色选择器实现方案——>Vue-Color( 实战*1+ Demo*7)
2024年08月04日
VUE
Vue项目卡顿慢加载?这些优化技巧告诉你!_vue数据多渲染卡顿
2024年08月04日
VUE
vue中的keep-alive详解与应用场景
2024年08月04日
VUE
Vue、React实现excel导出功能(三种实现方式保姆级讲解)
2024年08月04日
vue-office/docx插件实现docx文件预览
2024年08月04日
VUE
java调用js文件的两种方法(支持V8引擎)
2024年08月04日
JavaScript:解决计算精度问题/mathjs/bignumber.js/big.js/decimal.js
2024年08月04日
两周从爬虫小白变大神 _yjs_js_security_passport
2024年08月04日
JS笔记(对象、函数、数组)
2024年08月04日
Markdown.js:强大的纯JavaScript Markdown解析器
2024年08月04日
Vue项目:js模拟点击a标签下载文件并重命名,URL文件地址下载方法、请求接口下载文件方法总结。
2024年08月04日
vue 父组件怎么获取子组件里面的data数据
2024年08月04日
VUE
个人开发实现AI套壳网站快速搭建(Vue+elementUI+SpringBoot)
2024年08月04日
el-table 表格封装并改造实现单元格可编辑
2024年08月04日
none
nodejs环境下创建vue项目、SSH密钥登陆!!!
2024年08月04日
vue+quill+element-ui实现视频、图片上传及缩放保姆级教程,轻松使用富文本
2024年08月04日
【three.js】22. Imported Models导入模型
2024年08月04日