1

我正在尝试对 PostgreSQL 进行基本备份。我的代码是在 Ruby 中运行的简单 Bash。它只会做一个基本备份并将其 tar 到 /tmp/(DIR)

 file "/tmp/basebackup.sh" do
 user "postgres"
 mode 0755
 content <<-EOH
     su - postgres
     export PATH=$PATH:/usr/lib/postgresql/9.2/bin
     su -c "/usr/lib/postgresql/9.2/bin/initdb -D /tmp/pg_data/ -s --no-locale --encoding=UTF8"  - postgres
     su -c "/usr/lib/postgresql/9.2/bin/pg_ctl -D /tmp/pg_data -l logfile start" - postgres
     su -c "/usr/lib/postgresql/9.2/bin/psql -c "SELECT pg_start_backup('initial backup for SR')" template1" - postgres
     tar -cvf pg_base_backup.tar /tmp/pg_data
     su -c "/usr/lib/postgresql/9.2/bin/psql -c "SELECT pg_stop_backup()" template1" - postgres
     exit 0
 EOH
 end

 execute "/tmp/basebackup.sh"  do
      ignore_failure true
      action :run
 end

有没有更好的方法来做到这一点?

4

1 回答 1

2

Ruby 支持__END__用于标记可运行脚本的结束。之后的任何内容都不会被正在运行的程序看到,但可以使用DATA文件句柄来访问,它可以read像普通文件一样。试试这段代码看看它是否有效:

File.open('trashme.txt', 'w') do |content|
  content << DATA.read
end

__END__
su - postgres
export PATH=$PATH:/usr/lib/postgresql/9.2/bin
su -c "/usr/lib/postgresql/9.2/bin/initdb -D /tmp/pg_data/ -s --no-locale --encoding=UTF8"  - postgres
su -c "/usr/lib/postgresql/9.2/bin/pg_ctl -D /tmp/pg_data -l logfile start" - postgres
su -c "/usr/lib/postgresql/9.2/bin/psql -c "SELECT pg_start_backup('initial backup for SR')" template1" - postgres
tar -cvf pg_base_backup.tar /tmp/pg_data
su -c "/usr/lib/postgresql/9.2/bin/psql -c "SELECT pg_stop_backup()" template1" - postgres
exit 0

为了维护和清晰,我会使用该功能将 shell 脚本移到普通的 Ruby/chef 脚本之外。

于 2013-05-06T04:16:44.473 回答