1. pg_dump 가 어디에 있는지 확인

 

# find / -name pg_dump
/usr/pgsql-11/bin/pg_dump
/usr/bin/pg_dump

 

2. postgres 11버전을 사용하기에

 

# /usr/pgsql-11/bin/pg_dump -U [user] -Fp -f [filename] [dbname] -t [tablename]

 

 

3. 다시 복구 할때  

# su - postgres

4. 덤프파일이 있는 곳으로 이동후

# psql -f [filename] [dbname]

+ Recent posts