systemd
This commit is contained in:
parent
8e7d9a9c25
commit
5b5dd5f1f3
53
INSTALL.md
53
INSTALL.md
|
@ -167,60 +167,24 @@ CHATONS par Libre en Communs (https://a-lec.org)\nmailto:contact+pad@chalec.org\
|
||||||
|
|
||||||
# Démarrer le service Etherpad
|
# Démarrer le service Etherpad
|
||||||
|
|
||||||
Note @todo : cette partie est en travaux et le mécanisme décrit devrait évoluer vers un service
|
|
||||||
systemd
|
|
||||||
|
|
||||||
Tester le démarrer du service etherpad-lite :
|
Tester le démarrer du service etherpad-lite :
|
||||||
`$ src/bin/run.sh`
|
`$ src/bin/run.sh`
|
||||||
|
|
||||||
Vérifier que le démarrage se passe sans encombre. Puis intérrompre le processus avec : CTRL-C
|
Vérifier que le démarrage se passe sans encombre. Puis intérrompre le processus avec : CTRL-C
|
||||||
|
|
||||||
|
Copier le fichier de service systemd :
|
||||||
Installer screen :
|
|
||||||
```
|
```
|
||||||
# apt install screen
|
cp /home/etherpad/pad.git/conf/systemd/etherpad.service /etc/systemd/system/
|
||||||
```
|
```
|
||||||
|
|
||||||
Copier le fichier suivant dans un fichier run.sh :
|
Activer et démarrer le service :
|
||||||
```
|
```
|
||||||
#!/bin/sh
|
systemctl enable --now etherpad
|
||||||
export NODE_ENV=production
|
|
||||||
/usr/bin/screen -dmS pad "/home/etherpad/etherpad-lite/src/bin/run.sh"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Rendre le fichier exécutable :
|
Vérifier que le service tourne :
|
||||||
`$ chmod +x run.sh`
|
|
||||||
|
|
||||||
Lancer le script :
|
|
||||||
`$ ./run.sh`
|
|
||||||
|
|
||||||
Vérifier que le pad tourne dans le screen. Vérifier que la commande suivante fait apparaitre le pad dans la liste des écrans :
|
|
||||||
`screen -ls`
|
|
||||||
|
|
||||||
Créer le script `/home/etherpad/checkrestart.sh` qui va vérifier s'il y a besoin de relancer le processus :
|
|
||||||
```
|
```
|
||||||
#!/bin/sh
|
systemctl status etherpad
|
||||||
|
|
||||||
ret=`ps -edf | grep etherpad-lite | grep -v grep`
|
|
||||||
status=$?
|
|
||||||
|
|
||||||
if [ "$status" -ne "0" ] ; then
|
|
||||||
# echo "It seems like Etherpad-lite has been stopped or crashed.\nStarting etherpad-lite...";
|
|
||||||
/home/etherpad/run.sh
|
|
||||||
fi
|
|
||||||
```
|
|
||||||
|
|
||||||
Le rendre exécutable :
|
|
||||||
`chmod +x checkrestart.sh`
|
|
||||||
|
|
||||||
|
|
||||||
Configurer du cron :
|
|
||||||
`$ crontab -e`
|
|
||||||
|
|
||||||
et insérer les lignes suivantes dans le fichier :
|
|
||||||
```
|
|
||||||
@reboot /home/etherpad/run.sh > /dev/null
|
|
||||||
* * * * * /home/etherpad/checkrestart.sh
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Installation du proxy nginx
|
# Installation du proxy nginx
|
||||||
|
@ -372,9 +336,12 @@ Faire un lien générique pour avoir un nom de dossier invariant "statoolinfos"
|
||||||
$ ln -s statoolinfos-<verion> statoolinfos
|
$ ln -s statoolinfos-<verion> statoolinfos
|
||||||
```
|
```
|
||||||
|
|
||||||
Restaurer la configuration statoolinfos :
|
Copier les fichiers html :
|
||||||
```
|
```
|
||||||
cp -r /home/etherpad/pad.git/html/ /var/www/
|
cp -r /home/etherpad/pad.git/html/ /var/www/
|
||||||
|
```
|
||||||
|
Restaurer la configuration statoolinfos :
|
||||||
|
```
|
||||||
cp /home/etherpad/pad.git/conf/statoolinfos/pad.chalec.org.conf /home/statoolinfos/conf/
|
cp /home/etherpad/pad.git/conf/statoolinfos/pad.chalec.org.conf /home/statoolinfos/conf/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Etherpad, the collaborative editor.
|
||||||
|
After=syslog.target network.target postgresql.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=etherpad
|
||||||
|
Group=etherpad
|
||||||
|
WorkingDirectory=/home/etherpad/etherpad-lite/
|
||||||
|
Environment=NODE_ENV=production
|
||||||
|
|
||||||
|
ExecStart=/home/etherpad/etherpad-lite/bin/fastRun.sh
|
||||||
|
StandardOutput=append:/var/log/etherpad/output.log
|
||||||
|
StandardError=append:/var/log/etherpad/error.log
|
||||||
|
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
Reference in New Issue