Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
On of our server providers was running a deal on servers equipped with the newly released AMD Ryzen CPUs. We got a couple to test them for future placements. Right off the bat we started experiencing issues with them, the…
Yum, the CentOS package manager can be a real pain at times. I’ve seen Yum download packages at crawling speeds of 5kBps, that’s right. To fix this is fairly straightforward, given you have the the yum-fastestmirror plugin installed, if not…
CentOS is really slow to update versions of software’s it maintains so we’ll have to add an external repo to install PHP 5.6 on our server. Make sure you backup everything on your server. Start off by removing any previous…
Installing Varnish on CentOS 7.2 is pretty straight forward, start off by adding the epel-release repo. yum install epel-release With the repo added install Varnish yum install varnish Start Varnish service varnish start Start Varnish at startup chkconfig varnish on…
I recently got one of those new 5th Gen servers with SkyLake Xeons and NVMe drives. Obviously I wanted to find out the difference between these and standard Sata 7200rpm drives and Sata SSD drives. There’s a little utility called hdparm…
I was just setting up a new VPS when I hit this snag, the server threw the following error when I tried to start the LFD service Job for lfd.service failed because a fatal signal was delivered to the control…
Kept getting this dreaded error on a new install: etho: Not enough data available yet The fix for me was to update the vnstat databases manually, issued the following command: vnstat -u
With CentOS 7 the process of adding the Epel repo has been simplified, you now install the repo with the CentOS package manager yum. With this new method, you don’t need to worry about manually re-adding the repo if it has gone out…
Mod Security isn’t ready for NGINX yet, even though the ModSec website says a stable version for NGINX is available it still lacks important features. Because of this I’ve had to stick to Apache, but why not then make use…
Changing the hostname on CentOS 7 is pretty straight forward, issue the following at shell and replace HOSTNAME with the hostname you want to set. hostnamectl set-hostname HOSTNAME To verify that the new hostname is set issue the following: hostnamectl