Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
I had been experiencing issues getting java to run on a new server. While trying to check whether java was working I was repeatedly getting the following error: java -version # # There is insufficient memory for the Java Runtime…
I usually download the rpm or source from Java.com and install it manually but this time around it just wouldn’t work. So this is the alternative, read: supported way, of installing Java JDK 1.8. Issue yum list *jdk* to get a list of…
You need Java JDK installed, see this link Install Java JDK 1.8 Download the package from: maven.apache.org Move the compressed archive to the location you want and extract. cd /opt wget unzip apache-maven-3.3.3-bin.zip mv apache-maven-3.3.3 maven Create the following symlink: (note:…
A recent attempt at converting a 1.8GB database from MyISAM to InnoDB ran past 5 hours which triggered this quest to look for tweaks to improve the conversion speed. I was able to bring down the conversion time from 5+…
Checking for prerequisites… FOUND: NPTL MISSING: nc FOUND: sudo-1.8.6p3-20 FOUND: libidn-1.18-2 FOUND: gmp-4.3.1-7 FOUND: libaio-0.3.107-10 FOUND: libstdc++-4.4.7-16 FOUND: unzip-6.0-2 Checking for suggested prerequisites… FOUND: perl-5.10.1 FOUND: sysstat FOUND: sqlite ###ERROR### Right after fixing the host file issue, this came up.…
This error took me an hour to solve ERROR: Installation can not proceed. Please fix your /etc/hosts file You need to make sure the hostname is on the first line and should match the hostname of the server. All the…
To add file or folder exclusions to Windows Defender launch Windows Defender and click on Settings, scroll down to Exclusions and click on Add an Exclusion. You’ll be prompted by a number of options, select what or which location you want to exclude and hit OK.…
Have been working on setting up a server without a control panel with Apache and PHP-FPM, out of the gate I started getting Internal Server error messages, investigating the httpd error log revealed the following: Permission denied: FastCGI: failed to connect to…
One of my server recently rebooted by itself, but Nginx refused to start when it came back online. Manually trying to restart Nginx alternately threw the following errors error 1: nginx dead but pid file exists error 2: Not starting…
All the timezone information files are located under /usr/share/zoneinfo. Locate the timezone you want to enable. Edit the following statement with the path to enable the required timezone cp /usr/share/zoneinfo/<CONTINENT>/<CITY> /etc/localtime It’ll ask you whether you want to overwrite the existing file,…