print 'restore db1'
run_command('pg_restore -i -h localhost -p 5432 -U postgres -d db1 -v "/var/lib/project/backup/db1.backup" -c')
print '--- wait 3 seconds'
time.sleep(3)
print 'restore db2'
run_command('pg_restore -i -h localhost -p 5432 -U postgres -d db2 -v "/var/lib/project/backup/db2.backup" -c')
print '--- wait 3 seconds'
time.sleep(3)
print 'restoring mongodb'
run_command('/var/lib/project/bbds/mongodb-linux/bin/mongorestore /var/lib/project/backup/dump --drop')
print '--- wait 3 seconds'
time.sleep(3)
我run_command
的基本上是取自这个。
在我的控制台上:
python ignition.py --load-fixtures
For safety, this process will run for about one minute.
setup LDAP
restore db1
['pg_restore', '-i', '-h', 'localhost', '-p', '5432', '-U', 'postgres', '-d', 'db1', '-v', '/var/lib/project/backup/db1.backup', '-c']
Password:
输入密码后就卡住了。之后什么也没有发生。我不确定它是否资源繁忙。pg_restore
仍在运行,ps au|grep pg_restore
但mongorestore
不是。所以它必须坚持第一次恢复。我也不认为它的内存已满,因为我的虚拟机只有 512mb,而且它总是满的,并且总是使用交换内存。
我们怎么知道它在做什么?有时它会停留在恢复 mongo 上。所以所有这些操作都可能导致问题。我应该如何解决这个问题?
谢谢。
当我终止进程时,我得到了这个回溯:http ://pastebin.com/Cnv9P6HW 重新启动将“解决”问题。它将允许我毫无问题地运行脚本。但这并不稳定。我们有时会陷入困境。