我在我的Ruby on Rails应用程序中使用PostgreSQL数据库(在Mac OS X 10.9上)。
是否有关于如何升级PostgreSQL数据库的详细说明?
我担心我会破坏数据库中的数据或弄乱它。
答案 0 :(得分:382)
假设您已使用home-brew安装和升级Postgres,您可以执行以下步骤。
停止当前的Postgres服务器:
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
初始化一个新的10.1数据库:
initdb /usr/local/var/postgres10.1 -E utf8
运行pg_upgrade
(注意:如果您要从以下内容升级,请更改bin版本):
pg_upgrade -v \
-d /usr/local/var/postgres \
-D /usr/local/var/postgres10.1 \
-b /usr/local/Cellar/postgresql/9.6.5/bin/ \
-B /usr/local/Cellar/postgresql/10.1/bin/
将新数据移动到位:
cd /usr/local/var
mv postgres postgres9.6
mv postgres10.1 postgres
重新启动Postgres:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
检查/usr/local/var/postgres/server.log
以获取详细信息,并确保新服务器正常启动。
最后,重新安装rails pg
gem
gem uninstall pg
gem install pg
我建议您花一些时间阅读PostgreSQL documentation,以便准确了解您在上述步骤中所做的工作,以尽量减少挫折。
答案 1 :(得分:53)
以下是 Ubuntu 用户
的解决方案首先我们必须停止postgresql
sudo /etc/init.d/postgresql stop
创建一个名为/etc/apt/sources.list.d/pgdg.list的新文件并在下面添加
deb http://apt.postgresql.org/pub/repos/apt/ utopic-pgdg main
按照以下命令
wget -q -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-9.4
sudo pg_dropcluster --stop 9.4 main
sudo /etc/init.d/postgresql start
现在我们拥有一切,只需要升级如下
sudo pg_upgradecluster 9.3 main
sudo pg_dropcluster 9.3 main
那就是它。大多数升级的群集将在端口号5433上运行。请使用以下命令
进行检查sudo pg_lsclusters
答案 2 :(得分:48)
尽管上面有所有答案,但这还是我的5美分。
适用于任何操作系统以及任何postgres版本。
postgresql.conf
- > port
从5432
到5433
; bin
文件夹; pg_dumpall -p 5433 -U <username> | psql -p 5432 -U <username>
答案 3 :(得分:11)
user manual深入介绍了此主题。你可以:
pg_upgrade
就地;或
pg_dump
和pg_restore
。
如果有疑问,请使用转储。不要删除旧的数据目录,只要保留它以防出现问题/你犯了错误;这样您就可以回到未更改的9.3安装。
有关详细信息,请参阅手册。
如果你遇到困难,请发一个详细的问题,解释你是如何被困,在哪里以及你先尝试过的。这有点依赖于你如何安装PostgreSQL,因为有几种不同的PostgreSQL for OS X“发行版”(不幸的是)。所以你需要提供这些信息。
答案 4 :(得分:9)
更新:此过程与升级9.6到10相同;只需修改命令以反映版本9.6
和10
,其中9.6
是旧版本,10
是 new 版本。请务必相应地调整“旧”和“新”目录。
我刚刚在Ubuntu上将PostgreSQL 9.5升级到9.6并认为我会分享我的发现,因为有一些OS /特定于程序包的细微差别需要注意。
(我不想手动转储和恢复数据,因此这里的其他几个答案都不可行。)
简而言之,该过程包括安装新版本的PostgreSQL以及旧版本(例如,9.5和9.6),然后运行pg_upgrade
二进制文件,这在({some})详细解释为{{ 3}}。
pg_upgrade
唯一“棘手”的方面是未能为参数传递正确的值,或者在执行前未能以正确的用户或cd
登录到正确的位置一个命令,可能会导致神秘的错误信息。
在Ubuntu(可能是Debian)上,假设您使用的是“官方”仓库deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main
,并且如果您没有更改默认文件系统路径或运行时选项,则以下过程应该完成此任务。
安装新版本(请注意我们明确指定了9.6
):
sudo apt install postgresql-9.6
安装成功后,两个版本将并排运行,但在不同的端口上运行。安装输出在底部提到了这一点,但它很容易被忽视:
Creating new cluster 9.6/main ...
config /etc/postgresql/9.6/main
data /var/lib/postgresql/9.6/main
locale en_US.UTF-8
socket /var/run/postgresql
port 5433
停止两个服务器实例(这将同时停止):
sudo systemctl stop postgresql
切换到专用的PostgreSQL系统用户:
su postgres
进入他的主目录(不这样做会导致错误):
cd ~
pg_upgrade
要求以下输入(pg_upgrade --help
告诉我们):
When you run pg_upgrade, you must provide the following information:
the data directory for the old cluster (-d DATADIR)
the data directory for the new cluster (-D DATADIR)
the "bin" directory for the old version (-b BINDIR)
the "bin" directory for the new version (-B BINDIR)
可以使用“长名称”指定这些输入,以便更容易可视化:
-b, --old-bindir=BINDIR old cluster executable directory
-B, --new-bindir=BINDIR new cluster executable directory
-d, --old-datadir=DATADIR old cluster data directory
-D, --new-datadir=DATADIR new cluster data directory
我们还必须通过--new-options
开关,因为如果不这样做会导致以下结果:
connection to database failed: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/lib/postgresql/.s.PGSQL.50432"?
这是因为缺少此开关时会应用默认配置选项,这会导致使用不正确的连接选项,从而导致套接字错误。
从 new PostgreSQL版本执行pg_upgrade
命令:
/usr/lib/postgresql/9.6/bin/pg_upgrade --old-bindir=/usr/lib/postgresql/9.5/bin --new-bindir=/usr/lib/postgresql/9.6/bin --old-datadir=/var/lib/postgresql/9.5/main --new-datadir=/var/lib/postgresql/9.6/main --old-options=-cconfig_file=/etc/postgresql/9.5/main/postgresql.conf --new-options=-cconfig_file=/etc/postgresql/9.6/main/postgresql.conf
退出专用系统用户帐户:
exit
升级现已完成,但,新实例将绑定到端口5433
(标准默认值为5432
),因此,如果尝试在“切换”之前测试新实例。
正常启动服务器(同样,这将启动旧实例和新实例):
systemctl start postgresql
如果要将新版本设为默认版本,则需要编辑有效配置文件,例如/etc/postgresql/9.6/main/postgresql.conf
,并确保端口定义如下:
port = 5432
如果您这样做,请将旧版本的端口号同时更改为5433
(在启动服务之前),或者只删除旧版本(这将不删除您的实际数据库内容;您需要使用apt --purge remove postgresql-9.5
来实现这一点:
apt remove postgresql-9.5
以上命令将停止所有实例,因此您需要最后一次启动新实例:
systemctl start postgresql
作为最后一点,请不要忘记考虑pg_upgrade
的好建议:
Upgrade Complete
----------------
Optimizer statistics are not transferred by pg_upgrade so,
once you start the new server, consider running:
./analyze_new_cluster.sh
Running this script will delete the old cluster's data files:
./delete_old_cluster.sh
答案 5 :(得分:9)
如果您使用的是自制和自制服务,您可以这样做:
brew services stop postgresql
brew upgrade postgresql
brew postgresql-upgrade-database
brew services start postgresql
我认为如果您使用高级postgres功能,这可能无法完全发挥作用,但它对我来说非常有效。
答案 6 :(得分:8)
站在其他可怜的生物的肩膀上穿过这条泥土,我能够按照这些步骤在升级到优胜美地后重新开始运行:
假设您已使用home-brew安装和升级Postgres,您可以执行以下步骤。
停止当前的Postgres服务器:
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
初始化一个新的9.4数据库:
initdb /usr/local/var/postgres9.4 -E utf8
安装postgres 9.3(因为我的机器上已不存在):
brew install homebrew/versions/postgresql93
添加Yosemite升级期间删除的目录:
mkdir -p /usr/local/var/postgres/{pg_tblspc,pg_twophase,pg_stat_tmp}/touch /usr/local/var/postgres/{pg_tblspc,pg_twophase,pg_stat_tmp}/.keep
运行pg_upgrade
:
pg_upgrade -v -d /usr/local/var/postgres -D /usr/local/var/postgres9.4 -b /usr/local/Cellar/postgresql93/9.3.5/bin/ -B /usr/local/Cellar/postgresql/9.4.0/bin/
将新数据移动到位:
cd /usr/local/var
mv postgres postgres9.3
mv postgres9.4 postgres
重新启动Postgres:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
检查/usr/local/var/postgres/server.log
以获取详细信息,并确保新服务器正常启动。
最后,重新安装相关的库?
pip install --upgrade psycopg2
gem uninstall pg
gem install pg
答案 7 :(得分:4)
看起来解决方案现已融入Homebrew:
$ brew info postgresql
...
==> Caveats
To migrate existing data from a previous major version of PostgreSQL run:
brew postgresql-upgrade-database
....
答案 8 :(得分:1)
答案 9 :(得分:1)
在 Windows 上尝试使用pg_upgrade
时,我一直遇到不同的错误消息。
为我节省了大量时间:
答案 10 :(得分:0)
我的解决方案是将这两种资源结合起来:
https://gist.github.com/tamoyal/2ea1fcdf99c819b4e07d
和
http://www.gab.lc/articles/migration_postgresql_9-3_to_9-4
第二一个帮助更多然后是第一个。另外,不要按照一些不必要的步骤进行操作。 此外,如果您无法通过postgres控制台备份数据,您可以使用替代方法,并使用pgAdmin 3或其他程序进行备份,就像我在我的情况下那样。
此外,链接:https://help.ubuntu.com/stable/serverguide/postgresql.html 帮助设置加密密码并设置md5以验证postgres用户。
完成所有操作后,检查在终端中运行的postgres server
版本:
sudo -u postgres psql postgres
在postgres终端输入密码后输入:
SHOW SERVER_VERSION;
它将输出如下内容:
server_version
----------------
9.4.5
为了设置和启动postgres,我使用了命令:
> sudo bash # root
> su postgres # postgres
> /etc/init.d/postgresql start
> /etc/init.d/postgresql stop
然后从文件中恢复数据库:
> psql -f /home/ubuntu_username/Backup_93.sql postgres
或者,如果没有工作尝试使用这个:
> pg_restore --verbose --clean --no-acl --no-owner -h localhost -U postgres -d name_of_database ~/your_file.dump
如果您使用Rails,请在提取代码后执行bundle exec rake db:migrate
:)
答案 11 :(得分:0)
对于通过自制软件的Mac:
brew tap petere/postgresql
,
brew install <formula>
(例如:brew install petere/postgresql/postgresql-9.6
)
删除旧Postgres:
brew unlink postgresql
brew link -f postgresql-9.6
如果发生任何错误,请不要忘记在每一步中阅读并遵循brew说明。
请查看此内容以获取更多信息:https://github.com/petere/homebrew-postgresql
答案 12 :(得分:0)
我认为这是您将postgres更新为9.6的解决方案的最佳链接
https://sandymadaan.wordpress.com/2017/02/21/upgrade-postgresql9-3-9-6-in-ubuntu-retaining-the-databases/
答案 13 :(得分:0)
自从有了npm以来,在Windows 10上,我安装了rimraf软件包。 npm install rimraf -g
使用命令pg_dump -U $username --format=c --file=$mydatabase.sqlc $dbname
然后安装了最新的PostgreSQL版本,即11.2,这促使我这次使用端口5433。
之后是卸载PostgreSQL较旧版本的我的是10。请注意,卸载程序可能会警告您不要删除文件夹C:\PostgreSQL\10\data
。这就是为什么我们下一步要使用rimraf永久删除该文件夹及其子文件夹。
切换到PostgreSQL安装目录并运行命令rimraf 10
。 10是目录名。请注意使用旧版本的PostgreSQL,即9.5或类似版本。
现在将C:\PostgreSQL\pg11\bin, C:\PostgreSQL\pg11\lib
添加到Windows环境变量中。请注意,我的新安装版本是11,因此为什么要使用pg11
。
导航至C:\PostgreSQL\data\pg11
,然后打开postgresql.conf
,将port = 5433
编辑为port = 5432
就是这样。打开cmd并输入psql -U postgres
您现在可以使用命令pg_restore -U $username --dbname=$databasename $filename
答案 14 :(得分:0)
我在Windows 10上从Postgresql 11升级到Postgresql 12的解决方案如下。
首先,您需要停止并启动Postgresql服务。您可以通过Powershell中的以下命令来执行此操作。
开始:
pg_ctl start -D “d:\postgresql\11\data”
停止:
pg_ctl stop -D “d:\postgresql\11\data”
状态:
pg_ctl status -D “d:\postgresql\11\data”
在升级之前进行备份是明智的。 Postgresql 11实例必须正在运行。然后复制全局变量做
pg_dumpall -U postgres -g -f d:\bakup\postgresql\11\globals.sql
,然后针对每个数据库
pg_dump -U postgres -Fc <database> > d:\backup\postgresql\11\<database>.fc
或
pg_dump -U postgres -Fc -d <database> -f d:\backup\postgresql\11\<database>.fc
如果尚未完成安装Postgresql 12(因为还安装了Postgresql 11,它将位于端口5433上)
然后执行以下升级:
1)停止Postgresql 11服务(见上文)
2)编辑postgresql.conf
中的d:\postgresql\12\data
文件,并将port = 5433
更改为port = 5432
3)编辑Windows用户环境路径(windows start
,然后键入env
)以指向Postgresql 12而不是Postresql 11
4)通过输入以下命令来运行升级。
pg_upgrade `
-b “c:\program files\postgresql\11\bin” `
-B “c:\program files\postgresql\12\bin” `
-d “d:\postgresql\11\data” `
-D “d:\postgresql\12\data” --username=postgres
(在powershell中,使用backtick(或backquote)`继续下一行的命令)
5)并最终启动新的Postgresql 12服务
pg_ctl start -D “d:\postgresql\12\data”