notes
This commit is contained in:
parent
51399e0204
commit
35e44680be
4
postgres/install.sh
Normal file
4
postgres/install.sh
Normal file
@ -0,0 +1,4 @@
|
||||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
||||
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install postgresql
|
@ -1,3 +1,14 @@
|
||||
https://www.digitalocean.com/community/tutorials/how-to-move-a-postgresql-data-directory-to-a-new-location-on-ubuntu-18-04
|
||||
|
||||
copy the data
|
||||
`sudo rsync -av /var/lib/postgresql /target_dir`
|
||||
|
||||
rename original as a backup
|
||||
`sudo mv /var/lib/postgresql/10/main /var/lib/postgresql/10/main.bak`
|
||||
|
||||
point postgres to the new data directory
|
||||
`sudo vim //etc/postgresql/14/main/postgres.conf`
|
||||
` data_directory = '/mnt/volume_nyc1_01/postgresql/10/main'`
|
||||
|
||||
remove the old data
|
||||
`sudo rm -Rf /var/lib/postgresql/10/main.bak`
|
||||
|
Loading…
Reference in New Issue
Block a user