Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category CentOS

CentOS / RHEL: Exclude kernel from yum update

We recently needed to exclude the kernel from being updated on a VPS server. While this may not sound or seem ideal but there are certain scenarios where you don’t want to update the kernel every time you update packages…

How to install NTP client – CentOS 8

centos logo

Today we’ll look at how to install an NTP, chrony, client on CentOS 8. Issue the following to install the NTP client, chrony dnf install chrony Start the service by issuing the following: service chronyd start Start chrony on boot…

Install cPanel / WHM on CentOS 7.7

cpanel whm logo

Today we’ll install cPanel or WHM on CentOS 7.7 cPanel is the most popular control panel in the shared hosting space. It is so widely used that it is the defacto control panel in the industry, Plesk comes in close…

Create new database in MongoDB

MongoDB Logo

Today we’ll look at how to create a new database in MongoDB. Connect to mongod via the following line, replace your credentials mongo -u ‘username’ -p ‘password’ –authenticationDatabase ‘admin’ If you’re successfully authenticated then you’ll see the following prompt: To…