Setup MariaDB on CentOS7/RHEL7

Setup MariaDB on CentOS7/RHEL7

This article will guide through installing MariaDB server and its configuration on CentOS7/RHEL7. The assumption for this article is that you are using a clean build of CentOS7. Let's start with setting up the repo for MariaDB. Go ahead and setup MariaDB repo for the...

Setup Linux CA Sever – CentOS/Red Hat 6.x/7.x

Setup Linux CA Sever – CentOS/Red Hat 6.x/7.x

Setting up a Linux CA server is quick and easy and is a direct replacement for Microsoft CA. This article applies to both CentOS/Red Hat 6.x and 7.x versions. Let's start with installing the required packages for the CA server setup. First need to install openssl. #...

Generate Random Password – Red Hat/CentOS

Generate Random Password – Red Hat/CentOS

There are instances wherein you want to generate random passwords for setting up credentials. There is a very simple random password generator in-built into Linux. Just run the below command. # cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 24 | head -n24 | head -n1...