在哪里可以找到适用于 ubuntu 的原始 postgresql 8.4 配置文件(/etc/postgresql/8.4/main/*)?
将 ubuntu 升级到 9.10 版本。其中包括将 postgresql 从 8.3 升级到 8.4
包含配置文件的目录为空(/etc/postgresql/8.4/main/)
完全删除然后重新安装所有 ubuntu postgres 包(服务器、客户端、管理员),但没有重新安装/填充配置文件。
答案1
如果你想完全重新安装 postgresql,我建议你运行
dpkg --list | grep postgresql
然后运行
dpkg --purge <insert package here>
对于 list 命令返回的每个包(最有可能是 postgresql-common 和 postgresql-8.4
然后使用 aptitude install postgresql 重新安装,这将删除然后恢复所有配置文件。