PostgreSQL /etc/postgresql/9.6/main/environment

原始 📋 Debian 9 (Stretch) 7 行

适用于

当前查看:
Debian 9 (Stretch)
相同于:
其他版本:

详情

大小
7 行
MD5
a567730a646c4afdfc5cea58aa4bd49a
SHA256
1074010e46c5629825bdac2484052ddaec9b128e202c3861bc4d4f9c88cce9ec
/etc/postgresql/9.6/main/environment
# environment variables for postgres processes
# This file has the same syntax as postgresql.conf:
#  VARIABLE = simple_value
#  VARIABLE2 = 'any value!'
# I. e. you need to enclose any value which does not only consist of letters,
# numbers, and '-', '_', '.' in single quotes. Shell commands are not
# evaluated.

复制粘贴

curl:
curl https://exampleconfig.com/api/v1/config/original/a567730a646c4afdfc5cea58aa4bd49a?hint=environment
wget:
wget -O environment https://exampleconfig.com/api/v1/config/original/a567730a646c4afdfc5cea58aa4bd49a?hint=environment

给 AI Agent 用

<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/a567730a646c4afdfc5cea58aa4bd49a?hint=environment' /><config><app>PostgreSQL</app><os>Debian 9 (Stretch)</os><location>/etc/postgresql/9.6/main/environment</location><lines>7</lines><md5>a567730a646c4afdfc5cea58aa4bd49a</md5><sha256>1074010e46c5629825bdac2484052ddaec9b128e202c3861bc4d4f9c88cce9ec</sha256></config></prompt>

粘贴到 Claude、ChatGPT 或任何 AI 助手里。

安装 PostgreSQL

Alpine Linux

sudo apk add postgresql

Debian

sudo apt update && sudo apt install postgresql

Red Hat Enterprise Linux

sudo yum install postgresql17-server

Ubuntu

sudo apt update && sudo apt install postgresql

文件位置

文件路径
/etc/postgresql/9.6/main/environment
目录
/etc/postgresql/9.6/main/
用途
系统级配置目录
说明
/etc/ 里的文件是系统级配置,影响所有用户。

FAQ

什么时候该用这个 environment?

用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 PostgreSQL config 做 diff。

怎么恢复 PostgreSQL 的默认配置?

下载文件,把 /etc/postgresql/9.6/main/environment 里的当前配置备份好,替换掉,然后 reload 或 restart PostgreSQL。

environment 适合直接上生产吗?

这是 Debian 9 (Stretch) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。

和其他 OS 版本有什么不同?

默认值会随发行版和版本变化,这份对应 Debian 9 (Stretch)。

我可以用它来排查 PostgreSQL 吗?

可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。