什么时候该用这个 start.conf?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 PostgreSQL config 做 diff。
# Automatic startup configuration # auto: automatically start the cluster # manual: manual startup with pg_ctlcluster/postgresql@.service only # disabled: refuse to start cluster # See pg_createcluster(1) for details. When running from systemd, # invoke 'systemctl daemon-reload' after editing this file. auto
curl https://exampleconfig.com/api/v1/config/original/9bb73ac29fd5f433229675e12d493acf?hint=start.conf
wget -O start.conf https://exampleconfig.com/api/v1/config/original/9bb73ac29fd5f433229675e12d493acf?hint=start.conf
<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/9bb73ac29fd5f433229675e12d493acf?hint=start.conf' /><config><app>PostgreSQL</app><os>Debian 9 (Stretch)</os><location>/etc/postgresql/9.6/main/start.conf</location><lines>8</lines><md5>9bb73ac29fd5f433229675e12d493acf</md5><sha256>e83be42666e695b4e43c65fee5967e8f30e814ca49e473fad9ccf86a42b4f30a</sha256></config></prompt>
粘贴到 Claude、ChatGPT 或任何 AI 助手里。
sudo apk add postgresql
sudo apt update && sudo apt install postgresql
sudo yum install postgresql17-server
sudo apt update && sudo apt install postgresql
什么时候该用这个 start.conf?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 PostgreSQL config 做 diff。
怎么恢复 PostgreSQL 的默认配置?
下载文件,把 /etc/postgresql/9.6/main/start.conf 里的当前配置备份好,替换掉,然后 reload 或 restart PostgreSQL。
start.conf 适合直接上生产吗?
这是 Debian 9 (Stretch) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。
和其他 OS 版本有什么不同?
默认值会随发行版和版本变化,这份对应 Debian 9 (Stretch)。
我可以用它来排查 PostgreSQL 吗?
可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。