Befehl zum checken, ob ein Webservice auf localhost läuft
This commit is contained in:
parent
1b637bb276
commit
0047bd4887
|
@ -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/
|
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
|
## Gute Quellen
|
||||||
* Bash-Skripte: https://wiki.ubuntuusers.de/Shell/Bash-Skripting-Guide_für_Anfänger/
|
* 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
|
* Cronjobs: https://www.stetic.com/developer/cronjob-linux-tutorial-und-crontab-syntax.html
|
||||||
|
|
Loading…
Reference in New Issue