by CBrown | Nov 20, 2015 | Uncategorized
After doing a release upgrade do-release-upgrade from Ubuntu 12.04 to 14.04 my websites were going to the default vhost for apache. After looking at /etc/apache2/apache2.conf it had changed from looking for .cfg to .conf for the vhosts files. I just added the .cfg...
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, 2015 | Ham Radio
Dial Install on RPi2 This assumes you have already completed the correct steps in your allstarlink.org and echolink accounts. This install is very easy and the most difficult part of the whole install was finding the default password for the fresh install...
by CBrown | Jul 23, 2015 | Climbing, Ham Radio, Outdoors, Personal
150′ HAM Radio Tower Climb Buckhannon, WV Few Pictures
by CBrown | Feb 19, 2015 | MikroTik, Networking, Training, Work
2 Day MTCNA in the Heart of Amish Country! Course Description & Syllabi This two day course will cover MikroTik official certification material plus much more! Real world examples will be shown and demonstrated as part of the class. Each student will obtain...
by CBrown | Nov 19, 2014 | Ham Radio, Web Sites
Check out the new HamTalk website, it is now live.
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 | Apr 29, 2014 | Uncategorized
GnuTLS can’t use an encrypted key file. To create a duplicate key file with no encryption. openssl rsa -in server.key -out server-insecure.key It is also best to set your keys to 400 and your certs to 444. ...