]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/doc/production.md
Add ability to configure log level
[github/Chocobozzz/PeerTube.git] / support / doc / production.md
index de5d67b4eebb2a70aa3f15272183c1f6c4a650ed..d1ebbd29115e5f977661f6fb65768deef92f62dc 100644 (file)
@@ -239,6 +239,22 @@ $ cd /home/peertube/peertube-latest && NODE_ENV=production npm run reset-passwor
 
 ## Upgrade
 
+Make a SQL backup:
+
+```
+$ SQL_BACKUP_PATH="backup/sql-peertube_prod-$(date -Im).bak" && \
+    cd /home/peertube && sudo -u peertube mkdir -p backup && \
+    sudo pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
+```
+
+Update your configuration file. **If some keys are missing, your upgraded PeerTube won't start!**
+
+```
+$ diff <(curl -s https://raw.githubusercontent.com/Chocobozzz/PeerTube/develop/config/production.yaml.example) /home/peertube/config/production.yaml
+```
+
+Upgrade PeerTube:
+
 ```
 $ VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && \
     cd /home/peertube/versions && \
@@ -248,3 +264,13 @@ $ VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/la
     cd ./peertube-latest && sudo -u peertube yarn install --production --pure-lockfile && \
     sudo systemctl restart peertube
 ```
+
+Things went wrong? Change `peertube-latest` destination to the previous version and restore your SQL backup:
+
+```
+$ OLD_VERSION="v0.42.42" && SQL_BACKUP_PATH="backup/sql-peertube_prod-2018-01-19T10:18+01:00.bak" && \
+    cd /home/peertube && rm ./peertube-latest && \
+    sudo -u peertube ln -s "versions/peertube-$OLD_VERSION" peertube-latest && \
+    pg_restore -U peertube -c -d peertube_prod "$SQL_BACKUP_PATH"
+    sudo systemctl restart peertube
+```