postgresql數據遷移


postgresql從庫故障准備新庫

1,創建用戶
[root@localhost home]# userdel postgres
[root@localhost home]# groupdel postgres

mkdir /home/mydb
chown -R postgres:postgres /home/mydb
2,解壓安裝包
[root@localhost home]## tar -xvf postgres/postgresql-8.1.4.tar

cd postgres/postgresql-8.1.4
編譯安裝: ./configure --prefix=/usr/local/pgsql -localstatedir=/home/mydb

$ ./configure --prefix=/usr/local/pgsql --with-pgconfigdir=/usr/local/pgsql/bin/ --with-pgbindir=/usr/local/pgsql/bin/ --with-pgincludedir=/usr/local/pgsql
/include/ --with-pgincludeserverdir=/usr/local/pgsql/include/server/ --with-pglibdir=/usr/local/pgsql/lib/ --with-pgpkglibdir=/usr/local/pgsql/lib/ --with-pgsharedir=/usr/local/pgsql/share/
make

All of PostgreSQL successfully made. Ready to install


su - postgres

vi .bash_profile

PATH=$PATH:$HOME/bin:/usr/local/pgsql/bin

 

/usr/local/pgsql/bin/initdb /home/mydb


/usr/local/pgsql/bin/pg_ctl -D /home/mydb star

 

3.slony安裝

tar -xvf slony1-1.2.6.tar

su - root

./configure --with-pgsourcetree=/usr/local/pgsql/bin

$ ./configure --prefix=/usr/local/pgsql --with-pgconfigdir=/usr/local/pgsql/bin/ --with-pgbindir=/usr/local/pgsql/bin/ --with-pgincludedir=/usr/local/pgsql
/include/ --with-pgincludeserverdir=/usr/local/pgsql/include/server/ --with-pglibdir=/usr/local/pgsql/lib/ --with-pgpkglibdir=/usr/local/pgsql/lib/ --with-pgsharedir=/usr/local/pgsql/share/

 

3.主庫數據備份

 /usr/local/pgsql/bin/pg_dumpall > /home/mydb/backup/`date '+%Y%m%d'`_dumpall.sql

4.新庫恢復

psql -f /home/mydb/backup/`date '+%Y%m%d'`_dumpall.sql

 

發現報錯:

psql:20150611_dumpall.sql:406: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:409: ERROR: function public.dblink(text, text) does not exist
psql:20150611_dumpall.sql:417: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:420: ERROR: function public.dblink(text, text, boolean) does not exist
psql:20150611_dumpall.sql:428: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:431: ERROR: function public.dblink(text) does not exist
psql:20150611_dumpall.sql:439: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:442: ERROR: function public.dblink(text, boolean) does not exist
psql:20150611_dumpall.sql:450: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:453: ERROR: function public.dblink_build_sql_delete(text, int2vector, integer, text[]) does not exist
psql:20150611_dumpall.sql:461: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:464: ERROR: function public.dblink_build_sql_insert(text, int2vector, integer, text[], text[]) does not exist
psql:20150611_dumpall.sql:472: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:475: ERROR: function public.dblink_build_sql_update(text, int2vector, integer, text[], text[]) does not exist
psql:20150611_dumpall.sql:483: ERROR: could not access file "$libdir/dblink": No such file or directory
psql:20150611_dumpall.sql:486: ERROR: function public.dblink_close(text) does not exist

報錯原因是數據庫中用到存儲過程,存儲過程用到dblink

配置安裝dblink(擴展)

cd /home/postgres/postgresql-8.1.4/contrib
make

make install

再恢復沒問題了。

5.舊從庫上的腳本以及slon腳本文件都移到新庫上來,修改IP為從庫IP


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM