Ansible:postgresql_db恢复挂起

时间:2020-07-03 04:08:04

标签: postgresql ansible psql

使用以下脚本从sql恢复数据库

- name: Copy database dump file from Ansible Control tower to DB server
  copy:
    src: dump.sql
    dest: /home/ubuntu/

- name: Import the DB
  become: true
  become_user: postgres
  postgresql_db:
    name: <>
    login_user: <>
    state: restore
    target: /home/ubuntu/dump.sql

花了大约2个小时才表现良好,但是在第二场比赛中它卡住了,没有出现任何错误,它完全挂起了。

0 个答案:

没有答案