postgresql数据库路径迁移

迁移方法有两种:
(1)重新初始化 postgresql数据库,初始化时指定新的数据路径---PGDATA,然后在新的环境下将原有的数据库备份恢复一下。不过这个方法有点麻烦
(2)直接将现有的数据库文件全部拷贝到新的数据库路径下,然后重起数据库服务
第二种方法比较简单,因此,就详细描述一下第二种方法:
1、postgresql安装后,默认的数据库路径是/var/lib/pgsql/9.x/data
2、新建一个路径作为新的数据库数据路径,假如是/home/data
sudo mkdir /home/data
sudo chown -R postgres:postgres data
sudo chmod 700 data
最后这个赋权命令是必须的,不然数据库启动回有问题的
3、文件拷贝,
首先要停止postgresql服务
sudo systemctl stop postgresql
sudo su - postgres
cp -rf /var/lib/pgsql/9.x/data/* /home/data
4、修改service文件
找到/usr/lib/systemd/system/postgresql*.service
修改这个文件中的
Environment=PGDATA=/var/lib/pgsql/9.4/data/
将其修改为自己的新的数据路径:
Environment=PGDATA=/home/data/
至此所有的修改工作就完成了,这个方法比较简单,但是前提是postgresql已经作为服务添加到了systemctl,这一点需要注意
5、此时可以重新启动postgresql了,但是,尝试了几个方法都不能成功,只有重起一下系统,才可以
reboot系统
然后启动postgres服务
sudo systemctl restart posrgresql
所有的一切和原来一样一样地!顺利完成数据迁移。

为了避免数据迁移的工作,今后再新部署postgresql时,应该考虑到系统分区的问题,要避免使用默认的数据路径

root@pg-1:/root# systemctl start postgresql-9.6
Warning: postgresql-9.6.service changed on disk. Run 'systemctl daemon-reload' to reload units.
Job for postgresql-9.6.service failed because the control process exited with error code. See "systemctl status postgresql-9.6.service" and "journalctl -xe" for details.
root@pg-1:/root# systemctl daemon-reload
root@pg-1:/root# ps -ef|grep postgres
root      13725  13487  0 11:22 pts/0    00:00:00 su - postgres
postgres  13726  13725  0 11:22 pts/0    00:00:00 -bash
postgres  13765  13726  0 11:23 pts/0    00:00:00 psql -U postgres
root      13795  13773  0 11:27 pts/1    00:00:00 su - postgres
postgres  13796  13795  0 11:27 pts/1    00:00:00 -bash
root      13888  13867  0 11:31 pts/3    00:00:00 su - postgres
postgres  13889  13888  0 11:31 pts/3    00:00:00 -bash
root      14264  14085  0 13:32 pts/4    00:00:00 grep --color=auto postgres
root@pg-1:/root# systemctl start postgresql-9.6
root@pg-1:/root# ps -ef|grep postgres
root      13725  13487  0 11:22 pts/0    00:00:00 su - postgres
postgres  13726  13725  0 11:22 pts/0    00:00:00 -bash
postgres  13765  13726  0 11:23 pts/0    00:00:00 psql -U postgres
root      13795  13773  0 11:27 pts/1    00:00:00 su - postgres
postgres  13796  13795  0 11:27 pts/1    00:00:00 -bash
root      13888  13867  0 11:31 pts/3    00:00:00 su - postgres
postgres  13889  13888  0 11:31 pts/3    00:00:00 -bash
postgres  14277      1  0 13:32 ?        00:00:00 /usr/pgsql-9.6/bin/postmaster -D /opt/postgresql9.6/data/
postgres  14281  14277  0 13:32 ?        00:00:00 postgres: logger process   
postgres  14284  14277  0 13:32 ?        00:00:00 postgres: checkpointer process   
postgres  14285  14277  0 13:32 ?        00:00:00 postgres: writer process   
postgres  14286  14277  0 13:32 ?        00:00:00 postgres: wal writer process   
postgres  14287  14277  0 13:32 ?        00:00:00 postgres: autovacuum launcher process   
postgres  14288  14277  0 13:32 ?        00:00:00 postgres: stats collector process   
root      14290  14085  0 13:32 pts/4    00:00:00 grep --color=auto postgres
root@pg-1:/root#


你可能感兴趣的:(postgresql)