serverscripts/README.md

58 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

Scripts for different tasks
===========================
These scripts perform multiple of different tasks that help monitor the server and send emails after performing functions.
To send emails the sendEmail package is required
<pre>
apt-get install sendemail
</pre>
Change the following lines in scripts that send emails
MAILFROM is set to determine the server name and domain name for the server and generate and email for it to determine where the email is coming from. This can be changed to specify an email address or you can leave it to generate one.
<pre>MAILTO=user@example.com
SMTP=mail.example.com
MAILFROM=$(hostaname)@$(dnsdomainname)
</pre>
#### 00logwatch
This script sends a report based on the log files and settings.
<b>Installation</b>
<pre>apt-get install logwatch
ln -s $(pwd)/00logwatch /etc/cron.daily
</pre>
#### check_updates_deb
This script checks for updates on your Debian based systems. If any updates are found it will download them ready for Installation and an email will be sent to an email address specified
<b>Installation</b>
<pre>ln -s $(pwd)/check_updates_deb /etc/cron.daily
</pre>
#### dbbackup
This scripts backs up mysql databases and rotates the number of backups through seven days.
Specify the user and password that has access to the databases.
<pre>DBUSER='dbbackup'
DBPASS='EWFfP3GZsqr427Yj'
BACKUPDIR='/BACKUP/db/'
</pre>
<b>Installation</b>
<pre>ln -s $(pwd)/dbbackup /etc/cron.daily
</pre>
#### diskalert
Sends and email when disk space reaches greater than 90%.
<b>Installation</b>
<pre>ln -s ${pwd}/diskalert.sh /etc/cron.hourly
2024-06-21 21:51:57 +10:00
</pre>