Befehl zum checken, ob ein Webservice auf localhost läuft

This commit is contained in:
bmen 2020-07-26 11:46:59 +00:00
parent 1b637bb276
commit 0047bd4887
1 changed files with 4 additions and 0 deletions

View File

@ -109,6 +109,10 @@ Rsync ohne Rechteübernahme (gut für gemountete Laufwerke SAMBA)
```
sudo rsync -rltv --exclude '/storage/var/lib/nextcloud/*' /storage/ /mnt/backup-storage/
```
Checken ob ein Webservice in localhost läuft. Bei Ausgabe `200` ist alles OK:
```
curl -sL -w "%{http_code}\\n" "http://0.0.0.0:9090" -o /dev/null
```
## Gute Quellen
* Bash-Skripte: https://wiki.ubuntuusers.de/Shell/Bash-Skripting-Guide_für_Anfänger/
* Cronjobs: https://www.stetic.com/developer/cronjob-linux-tutorial-und-crontab-syntax.html