How to Change Hostname in CentOS 7

Manage the Hostname Using hostnamectl. You can run the following command to check for the current hostname Confirm that your current hostname, execute the following command [root@nod home]# hostnamectl change your current hostname, execute the following command [root@nod home]# hostnamectl set-hostname server1.mydomain.com –static That’s it! You’ve just changed your server hostname to server1.mydomain.com

How to Disabling MySQL Strict Mode on CPanel server

How to Disabling MySQL Strict Mode properly in MySQL / MariaDB Configuration on a cPanel server. let’s get started To determine the current global sql_mode value, execute the following command [root@secure admin]# mysql -e ‘select @@GLOBAL.sql_mode;’ +——————————————————————————————-+ | @@GLOBAL.sql_mode | +——————————————————————————————-+ | STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION | +——————————————————————————————-+ Open the MySQL configuration file For cPanel servers, the location … Read more

ImageMagick installation on cPanel server

Let see how to install ImageMagick on CentOS 7 Cpanel server easily. 1st you have to remove “popen” from disable_functions in php.ini, otherwise, you will get this error remove “popen” from disable_functions let’s get started with imagick You can use WHM to do the installation with the following steps: 1. Login to WHM as the … Read more