computers:serverconfig
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
computers:serverconfig [2008/11/13 15:44] – david | computers:serverconfig [2010/12/10 16:02] (current) – david | ||
---|---|---|---|
Line 110: | Line 110: | ||
files are in: **/ | files are in: **/ | ||
+ | ==== Check NFS Mounts ==== | ||
+ | |||
+ | After the last power outage, the NWN servers were not speaking as I hadn't mounted the NFS mounts which share the drives to one another. | ||
+ | |||
+ | NOTE: I moved this to hourly so it will reconnect after a power off / reboot in a more reasonable time. | ||
+ | |||
+ | **/ | ||
+ | |||
+ | <code bash> | ||
+ | |||
+ | #!/bin/bash | ||
+ | # | ||
+ | # check_nfs_mounts.sh | ||
+ | # quick check if we have our NFS directories mounted... if not... mount them! | ||
+ | # - dlr 2008/11/12 | ||
+ | |||
+ | MOUNTEDTEST=`df | grep '/ | ||
+ | |||
+ | if [ $MOUNTEDTEST -ne 1 ]; then | ||
+ | mount / | ||
+ | fi | ||
+ | |||
+ | MOUNTEDTEST=`df | grep '/ | ||
+ | |||
+ | if [ $MOUNTEDTEST -ne 1 ]; then | ||
+ | mount / | ||
+ | fi | ||
+ | </ | ||
==== dovecot alive? ==== | ==== dovecot alive? ==== | ||
Line 194: | Line 222: | ||
fi | fi | ||
done | done | ||
- | </ | ||
- | |||
- | ==== Check NFS Mounts ==== | ||
- | |||
- | After the last power outage, the NWN servers were not speaking as I hadn't mounted the NFS mounts which share the drives to one another. | ||
- | |||
- | **/ | ||
- | |||
- | <code bash> | ||
- | |||
- | #!/bin/bash | ||
- | # | ||
- | # check_nfs_mounts.sh | ||
- | # quick check if we have our NFS directories mounted... if not... mount them! | ||
- | # - dlr 2008/11/12 | ||
- | |||
- | MOUNTEDTEST=`df | grep '/ | ||
- | |||
- | if [ $MOUNTEDTEST -ne 1 ]; then | ||
- | mount / | ||
- | fi | ||
- | |||
- | MOUNTEDTEST=`df | grep '/ | ||
- | |||
- | if [ $MOUNTEDTEST -ne 1 ]; then | ||
- | mount / | ||
- | fi | ||
</ | </ | ||
Line 541: | Line 542: | ||
===== dovecot ===== | ===== dovecot ===== | ||
+ | |||
+ | ==== Upgrading ==== | ||
+ | |||
+ | - Downloaded latest version (1.2.16) | ||
+ | - Uncompress in **/ | ||
+ | - Build: | ||
+ | ./configure | ||
+ | make | ||
+ | make install | ||
+ | </ | ||
+ | - Fix the certificate (make a new one) | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - < | ||
+ | - Restart **dovecot** (i just killed the process and then run it again) | ||
+ | |||
+ | |||
+ | |||
+ | ==== Initial Install ==== | ||
+ | |||
* Download the source from [[http:// | * Download the source from [[http:// |
computers/serverconfig.1226591056.txt.gz · Last modified: 2008/11/13 15:44 by david