postgresql開啟歸檔日誌

heibao326發表於2015-06-03
步驟一:修改postgresql的配置檔案(postgresql.conf)
           wal_level=hot_standby
           archive_mode =on 
           archive_command ='DATE=`date +%Y%m%d`;DIR="/home/postgres/arch/$DATE";(test -d $DIR || mkdir -p $DIR)&& cp %p $DIR/%f'
           ps:%p 是指相對路徑  %f是指檔名
步驟二:建立歸檔路徑
          mkdir  -p /home/postgres/arch
          chown -R postgres:postgres /home/postgres/arch
步驟三:重啟資料庫
步驟四:驗證歸檔是否正常
          postgres=# checkpoint;
                            CHECKPOINT
           postgres=# select pg_switch_xlog();
             pg_switch_xlog 
             ----------------
             1/760000E8
             (1 row)
          postgres@ubuntu:~$ cd /home/postgres/data/data_1999/arch/
          postgres@ubuntu:~/data/data_1999/arch$ ls
            20150603
          postgres@ubuntu:~/data/data_1999/arch$ cd 20150603/
           postgres@ubuntu:~/data/data_1999/arch/20150603$ ls
           000000010000000100000074  000000010000000100000075  000000010000000100000076


           

         

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30158401/viewspace-1683636/,如需轉載,請註明出處,否則將追究法律責任。

相關文章