how to update etherpad

update-etherpad
Lzebulon 2025-11-05 19:01:10 +01:00
parent d8c727e21d
commit a122ec42f7
No known key found for this signature in database
GPG Key ID: D6CDAB8050CBBE7D
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Etherpad
Etherpad est pad collaboratif en ligne.
## Crans
On héberge 2 fois ce service, sous pad.crans.org et tmpad.crans.org.
Le second a la suppression automatique de pad au bout d'un certains temps.
Les deux sont heberge sur la vm kenobi.
## Mise à jour
Pour mettre à jour pad.crans.org (tmpad.crans.org est analogue)
```bash
systemctl stop etherpad-lite.service
cd /var/www/etherpad-lite
git checkout v[votre_super_nouvelle_version]
git switch -c v[votre_super_nouvelle_version]
sudo -u etherpad ./bin/run.sh
# [CTRL-C] une fois que ca fonctionne
systemctl start etherpad-lite.service
```