Postgresql 데이터 백업 복원
Postgresql 데이터 백업 복원 백업, 복원 client에 postgresql가 설치 되어있다면, 서버에 직접 접속하지 않고 아래 --host, --port, --username 옵션을 사용해서 백업을 진행할수 있습니다. 준비물 : postgresql 설치 ( www.postgresql.org/download/ ) 백업할 서버 주소, user 계정, 비밀번호, database명 복원할 서버 주소, user 계정, 비밀번호, database명 1. 백업 "%PSQL_HOME%\bin\pg_dump.exe" -Fc --host=%DB_HOST% --port=%DB_PORT% --username=%DB_USER% -d %DB_NAME% > %FILE_HOME% 명령어 예시 pg_dump.exe" -Fc ..
2021. 1. 18.