Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sierracircle/services-checker
Bash Script to check if services are running and restart if not. Sends email to you.
https://github.com/sierracircle/services-checker
Last synced: 6 days ago
JSON representation
Bash Script to check if services are running and restart if not. Sends email to you.
- Host: GitHub
- URL: https://github.com/sierracircle/services-checker
- Owner: sierracircle
- License: mit
- Created: 2014-09-12T22:59:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-19T02:08:49.000Z (about 2 years ago)
- Last Synced: 2024-11-01T09:52:05.814Z (13 days ago)
- Language: Shell
- Size: 24.4 KB
- Stars: 158
- Watchers: 12
- Forks: 59
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Services Checker
Bash Script to check if services are running and restart if not. Sends email to you.
Tested with Ubuntu 18.04, 20.04 and 22.04.## Installation
1. Put it into your scripts folder
2. Uncomment the email and set your email address if you want an email notification
3. Uncomment the log option if you want a log-file (it creates it automatically in the same directory as the script)
4. Set the services you want to keep an eye on (by default it has `mariadb` and `apache2`... you can modify them as you need) For ubuntu 20.04 and below I had to use mysql instead of mariadb. In ubuntu 22.04 I had to use mariadb
5. Save your changes
6. Ensure it has enough privilege to run:```
chmod +x /your/path/to/scripts/restart-services
```6. Create a cronjob as root (sudo crontab -e) and add something like this, which runs every minute (adjust to your needs):
```
#check on services
*/1 * * * * /your/path/to/scripts/restart-services```
The script will check the status of each service. If the service is stopped, it tries to restart the service. If the service starts, it sends you an email saying the service stopped but was restarted.
If the service does not start for some reason, it sends you an email telling you it was not started.
After that, it will continue to try and start, but not send any more emails until the service is finally started.