Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Yet another error while trying to compile nginx from source. ./configure: error: the GeoIP module requires the GeoIP library The fix is simple, issue the following at shell: yum install geoip-devel
If you run into the following error while compiling nginx from source, follow the steps below: ./configure: error: perl module ExtUtils::Embed is required Issue the following at shell: yum install perl-ExtUtils-Embed That’s it.
Ran into this error when I was trying to compile nginx from source: ./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either do not enable the module or install the libraries. Luckily there’s a quick fix…
The elusive latest version of OpenSSL, we finally meet. As everyone knows, CentOS does not always ship with the latest version of softwares. The core repo focuses more on stability rather than freshness. We recently needed to update OpenSSL on…
Python PIP is a package installed similar to Yum on CentOS. It is the recommend / preferred way of installing Python packages on machines. To get started make sure you have the epel-release repo installed, make sure by running the…
If you’re here, you know why you want Varnish-Cache, if you still aren’t sure, read this. The people behind Varnish-Cache have changed things up a bit with regards to installation, The repo is now being managed by Package Cloud. Start off by…
Received this error recently on a fresh installation of CentOS 7. The Delta RPMs package reduces the overall download size of patches, this is great for bandwidth constrained servers. The exact error message received is as follows: Delta RPMs disabled…
Ruby language is open source, it is simple and focuses on productivity while at the same time has an elegant syntax that is easy to read and understand. We’ll be installing the latest version released in April 2019, version 2.6.…
We recently needed the latest build of ImageMagick on one of our servers for PSD preview generation on OwnCloud. ImageMagick version 6, which ships with the base repo of CentOS 7 is broken and doesn’t generate PSD previews. Downloading rpm’s…
It is pretty straightforward to check a MySQL / MariaDB table for a Primary Key, connect to the db server, login or open up your favorite MySQL client. Without selecting any table, issue the following command: SHOW INDEXES FROM <TABLE>…