Scripts

From Server Knowledge Base
Revision as of 11:37, 15 January 2013 by Rootadminacc (talk | contribs) (Created page with "These are also located at http://serverkb.co.uk/tools/ Read the README.txt for further information on these tools. == [http://serverkb.co.uk/tools/accounts.sh Plesk Accounts...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

These are also located at http://serverkb.co.uk/tools/

Read the README.txt for further information on these tools.

Plesk Accounts (1)

The accounts script is only used on Linux servers with Plesk below version 11 (11+ encrypts passwords) and can retrieve Plesk, FTP and email passwords. To use it you need to do the following within SSH:

wget http://serverkb.co.uk/tools/accounts.sh ; chmod +x accounts.sh
./accounts.sh

Written by Leon Teale, modified by Byron Galietta and Sam Teale.

Apache Monitor (2)

This script will start a specific service that you specify. By default it will do Apache, the Linux web server. To use it, do the following:

cd / root ; wget http://serverkb.co.uk/tools/apachemon.sh ; chmod +x apachemon.sh
crontab -e

In here add:

10 * * * * /root/apachemon.sh

Edit the file and replace the admin email address with yours by doing:

vim apachemon.sh

Replace apache2 with httpd within it if your server calls Apache httpd instead.

To start another service edit the following field:

service="apache2"

For example for MySQL have service="mysql" instead (or mysqld)

And then change all references to that service e.g. change apachedown to mysqldown

Plesk server database backups (6)

This backs up all databases as .sql files and a .tar.gz containing all excluding information_schema, atmail and horde on a Plesk Linux server and emails you them.

Only .sql files (7)

Use this script if you only want .sql files in separate emails and not the extra one with all MySQL databases compressed into a .tar.gz.

For both of the above:

apt-get install mutt

or

yum install mutt
chmod 755 /sent ; chmod 755 /root/sent
vim /etc/passwd

Change the root user's home directory to / instead of /root

crontab -e

*  * * * 0 :> /root/sent

A solution may be needed for:

postdrop: warning: uid=0: File too large
sendmail: fatal: root(0): message file too big
Error sending message, child exited 75 (Deferred.).
Could not send the message.

No email version (3)

Disk Limit Monitor (8)

This simply notifies you via email when your disk space reaches 90%. To run and install it do the following:

cd /root ; wget http://serverkb.co.uk/tools/disklimit.sh ; chmod +x disklimit.sh

Edit the file and replace the ADMIN email address with yours by doing:

vim disklimit.sh
crontab -e

In here add:

45 * * * * /root/disklimit.sh

Extra Logging (9)

Extra Logging 2 (for Plesk servers)

Registrar finder for Plesk servers (11)

Once edited with the registrar of your choice this will get the list of your domains and look up the domain registar. If it matches then it will place these in a file in the same directory you are in called our_registrar. Some server configuration has to be done first which can be found here: http://serverkb.co.uk/wiki/Linux#WHOIS_script

Engine X Monitor (16)

This is a script to automatically monitor and check the new web server used by Plesk 11+ on Linux servers. To use it, do the following:

cd /root ; wget http://serverkb.co.uk/tools/nginxmon.sh ; chmod +x nginxmon.sh
crontab -e

#In here add:

10 * * * * /root/nginxmon.sh

#Edit the file and replace the admin email address with yours by doing:

vim nginxmon.sh

Old Extra Logging (17)

Red5 Media Server tar.gz (22)

See the following link for what Red5 is/does: http://www.red5.org/

Plesk Monitor/Starter (23)

This is a work in progress and is meant to start a specific service, in this case, Plesk.

Slow Query Log for MySQL (24)

HN


Snow Script (25)

wget http://serverkb.co.uk/tools/snow.sh
chmod +x snow.sh
./snow.sh

This puts snowfall on your screen! :) To quit, do:

CTRL + C
CTRL + L

SQL Backup for chroot (26)

This backs up databases from a chrooted Linux environment and places them in a folder called /sqlbak

Before using it please do:

chroot /usr/fs

Email version (27)

UpdateDB (28)

This updates the linux index of a server if it does not already so any knew files can be found using the linux comand locate <filename>. To use it you need to do the following:

cd /root ; wget http://serverkb.co.uk/tools/updatedbscript.sh ; chmod +x updatedbscript.sh
crontab -e

#In here add:

5 * * * * /path/to/updatedbscript.sh

Notes

Remove spaces between file names

Guide 1

Do not use for-loops to process lists of unknown length, like a directory listing. If the list grows too long it will exceed your maximum line length (see syslimits.h) and your code will break. Using a while-loop removes this risk.

Guide 2