by CBrown | May 3, 2016 | Ham Radio, Servers
Defining Functions in Allstar Define these functions in /etc/asterisk/rpt.conf in the functions section. 1=ilink,1 ; disconnect link = *1<node> 2=ilink,2 ; monitor link = *2<node> 3=ilink,3 ; connect link transceive = *3<node> 4=ilink,4...
by CBrown | Nov 19, 2015 | Servers, Uncategorized, Work
Try to do a release upgrade I ran into the issue of /boot not having enough free space. Here is how to resolve that. Check which kernel you are actively using. DO NOT REMOVE THIS ONE! uname -r View all kernels installed on your system. dpkg –list | grep...
by CBrown | Nov 19, 2015 | Servers, Web Sites, Work
To run vhosts under separate UIDs/GIDs in apache is very easy with mpm-itk. This will help secure your sites on your shared server. First install apache2-mpm-itk apt-get install apache2-mpm-itk Next add a group and user groupadd web1 useradd -s /bin/false -d...
by CBrown | Oct 23, 2014 | Servers, Work
It is not exactly easy to add a new user to Nagios but this is how it can be done. If using ubuntu you will need to modify /usr/local/nagios/etc/cgi.cfg The important one to view the information on the web interface is...
by CBrown | Oct 21, 2014 | Servers
Of course they had to change the way you restart interfaces in Ubuntu 14.04. Here is how to restart your interface. Make sure you select the correct interface, the example below is for eth0. You can check you interface name in ifconfig. ifdown eth0 && ifup...
by CBrown | Aug 1, 2013 | Servers, Work
Put this at the end of your .bashrc function cz { zonefile=$1 zone=$(basename $zonefile .zone) named-checkzone $zone $zonefile } Then you will be able to use cz to check you zone files. Example: cbrown$ cz...