Postgresql 错误 - 致命:无法识别的配置参数“default_text_search_config”
我昨天刚刚安装了 PostgreSQL,它使用完全相同的命令运行良好:
pg_ctl -D /usr/local/pgsql/data start -l /usr/local/pgsql/log/pgsql.log
但是,当我今天尝试再次运行它时,它不起作用,我在日志文件中发现了以下消息:
FATAL: unrecognized configuration parameter "default_text_search_config"
有人可以告诉我什么吗错误的?
I've just installed PostgreSQL yesterday and it ran fine with the exact same command:
pg_ctl -D /usr/local/pgsql/data start -l /usr/local/pgsql/log/pgsql.log
However, when I tried to run it again today, it didn't work, and I found the following message in the log file:
FATAL: unrecognized configuration parameter "default_text_search_config"
Can someone tell me what's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该参数自 PostgreSQL 8.3 起被识别。您必须安装 8.2 或更早版本,这是不明智的。它可能会被路径中另一个安装的配置文件阻塞。
当前版本是9.1。 8.2 版本于 2006 年发布(!),于 2011 年终止(不再有安全升级)。安装更新版本。
That parameter is recognized since PostgreSQL 8.3. You must be installing 8.2 or older, which is unwise. It probably chokes on a config file from another installation in your PATH.
Current version is 9.1. Version 8.2 came out in 2006 (!), it reaches end of life in 2011 (no more security upgrades). Install a more recent version.