我在Mac OS X 10.6.x上安装了postgres。 当我为postgres数据库版本运行时:
psql --versionpsql (PostgreSQL) 9.1.1
contains support for command-line editing
当我检查服务器的版本时:
psql -c "select version();" version
--------------------------------------------------------------------------------------------------------------------------------------------------
PostgreSQL 9.0.5 on x86_64-apple-darwin10.8.0, compiled by GCC i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3), 64-bit
(1 row)
所以当我跑
时bash-3.2$ psql
psql (9.1.1, server 9.0.5)
WARNING: psql version 9.1, server version 9.0.
Some psql features might not work.
我不确定这些功能是什么。这些版本是冲突的。我是新手使用postgres所以我不知道如何升级postgres服务器。我试图在网上搜索一些东西,但没有找到太多帮助。我不想卸载并重新安装postgres。无论如何我可以在没有冲突的情况下将它们一起使用吗?或者只是将服务器升级到与数据库相同的版本?
编辑:
which psql
/opt/local/lib/postgresql91/bin//psql
which postgres
/opt/local/lib/postgresql91/bin//postgres
ps -eaf|grep postgres
0 60 1 0 0:00.07 ?? 0:00.09 /opt/local/bin/daemondo --label=postgresql90-server --start-cmd /opt/local/etc/LaunchDaemons/org.macports.postgresql90-server/postgresql90-server.wrapper start ; --stop-cmd /opt/local/etc/LaunchDaemons/org.macports.postgresql90-server/postgresql90-server.wrapper stop ; --restart-cmd /opt/local/etc/LaunchDaemons/org.macports.postgresql90-server/postgresql90-server.wrapper restart ; --pid=none
103 3971 3967 0 0:00.69 ?? 0:01.17 postgres: writer process
103 3972 3967 0 0:00.67 ?? 0:00.88 postgres: wal writer process
103 3973 3967 0 0:00.18 ?? 0:00.23 postgres: autovacuum launcher process
103 3974 3967 0 0:00.19 ?? 0:00.21 postgres: stats collector process
0 3616 2726 0 0:00.04 ttys000 0:00.06 su postgres
103 3967 3619 0 0:00.23 ttys000 0:00.34 postgres -D /usr/local/pgsql/data
0 4559 4055 0 0:00.03 ttys001 0:00.05 su postgres
103 5922 4560 0 0:00.01 ttys001 0:00.01 grep postgres
谢谢。
答案 0 :(得分:4)
我想你之前已经安装了PostgreSQL。请确认一下,'在这种情况下,您必须升级您的数据库。 这是重要的一步,不可能只升级软件。
请尝试停止当前正在运行的服务器。首先,检查当前运行的PostgreSQL的来源:
sudo launchctl list | grep -Ei "macports|postgres"
然后执行:
sudo launchctl unload -w <OldPostgreSQL.plist>
并启动一个像这样的新服务器:
sudo launchctl load -w <NewPostgreSQL.plist>
我希望新的plist为/Library/LaunchDaemons/org.macports.postgresql91-server.plist
。
如果您需要升级:
pg_dump
对数据库进行完全转储。initdb
文件夹中执行PGDATA
的新版本。这是small description我在这个问题上遇到的问题。这是official PostgreSQL documentation on upgrading between major releases。
答案 1 :(得分:2)
Mine是一个自制安装,这就是我所做的(带我到一个功能正常的psql没有版本问题) - 我正在尝试安装KyngChaos的postgresql的mac版本
step 0 (already did):
brew uninstall postgresql
step1
which psql
=> "locationpath" (in my case, /usr/bin/psql)
sudo rm "locationpath"
step2
#inside ~/.bash_profile
export PATH=/usr/local/pgsql-9.3/bin:$PATH
step3
psql
#works
答案 2 :(得分:1)
如果您在新安装之前已经安装了PostgreSQL版本,则可能会发生这种情况。
由于你有两个版本的PostgreSQL,你需要两个版本的psql。基本上,现在当您键入psql时,您的系统可能无法确定您尝试连接的数据库版本。
删除以前的版本。或者安装新的psql以及新版本的服务器。