Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
audina:dailymaintenance:start [2011/10/28 12:35]
smayr
audina:dailymaintenance:start [2011/11/29 12:59] (current)
smayr [Web Server (www)]
Line 167: Line 167:
 == Web Server (www) == == Web Server (www) ==
   * Check disk space availability.   * Check disk space availability.
-  * Check status of backups. +  * Check status of backups.   
-  * Check that the pmon process is running.+    * Backup folder is ''/data/backup'' 
 +    * Backup script is ''/etc/cron.daily/backup'' 
 +    * Backup to mirror drive is ''/media/www/data'' 
 +    * Backup script to mirror drive is ''/etc/cron.daily/backuptomirror'' 
 +    * Backup of mirrored ''swdev.audina.net'' server is ''/data/mirror''. This backup is created using ''rsync'' (see script ''/root/rsync-swdev.sh''). <code bash>#!/bin/bash 
 +rsync --daemon --config=/etc/rsyncd.conf 
 +root@www:~# cat rsync-swdev.sh 
 +#!/bin/bash 
 + 
 +#rsync --verbose  --progress --stats --compress --rsh=/usr/bin/ssh \ 
 +#      --recursive --times --perms --links --delete \ 
 +#      --exclude "*bak" --exclude "*~"
 +#      192.168.0.160:webfiles /var/www/mirror 
 + 
 +# Website 
 +rsync --archive --verbose --progress --stats --rsh=/usr/bin/ssh \ 
 +--recursive --times --perms --links --delete --exclude=stats \ 
 +192.168.0.160::webfiles /data/mirror/swdev.audina.net/www 
 + 
 +# Databases 
 +rsync --archive --verbose --progress --stats --rsh=/usr/bin/ssh \ 
 +--recursive --times --perms --links --delete \ 
 +192.168.0.160::databases /data/mirror/swdev.audina.net/databases 
 + 
 +# Root user home 
 +rsync --archive --verbose --progress --stats --rsh=/usr/bin/ssh \ 
 +--recursive --times --perms --links --delete \ 
 +192.168.0.160::root /data/mirror/swdev.audina.net/root 
 + 
 +# Subserver Repositories 
 +rsync --archive --verbose --progress --stats --rsh=/usr/bin/ssh \ 
 +--recursive --times --perms --links --delete \ 
 +192.168.0.160::repos /data/mirror/swdev.audina.net/repos 
 +</code> 
 +  * Check that the ''pmon'' process is running.
   * No changes to ''/etc/passwd'', ''/etc/shadow'', ''/etc/hosts'', ''/etc/group''.   * No changes to ''/etc/passwd'', ''/etc/shadow'', ''/etc/hosts'', ''/etc/group''.
   * Check the latest entries in the logs.   * Check the latest entries in the logs.
Line 189: Line 223:
   * Need to re-design a new network infrastructure for better productivity, connectivity, eliminate downtime, and point of failures.   * Need to re-design a new network infrastructure for better productivity, connectivity, eliminate downtime, and point of failures.
   * All production servers need to be replaced at least once every five years.   * All production servers need to be replaced at least once every five years.
-  * Need to replace all the home built servers: Infusion, OnContact, and Time Clock. These servers do not have hardware redundant functionality to handle production environment. +  * Need to replace all the home built servers: ''Infusion''''OnContact'', and ''TimeClock''. These servers do not have hardware redundant functionality to handle production environment. 
-  * Need to rebuild and replace fileserver because of hardware failure and running out of space. +  * Need to rebuild and replace ''Fileserver'' because of hardware failure and running out of space. 
-  * Need to rebuild and upgrade Exchange server to Exchange 2010 with backup and restore software licenses.+  * Need to rebuild and upgrade ''Exchange'' server to Exchange 2010 with backup and restore software licenses.
   * Need a new gateway router that can monitor Audina bandwidth, productivity, and threats from the outside world.   * Need a new gateway router that can monitor Audina bandwidth, productivity, and threats from the outside world.
   * Need new network switches.   * Need new network switches.