How to convert your existing CentOS server to CloudLinux

This guide will help you to convert your existing CentOS server to CloudLinux. let’s get started with CloudLinux execute the following command to start installation CloudLinux root@ds77 [~]# wget https://repo.cloudlinux.com/cloudlinux/sources/cln/cldeploy [root@ds77 ~]# wget https://repo.cloudlinux.com/cloudlinux/sources/cln/cldeploy –2020-07-04 20:58:04– https://repo.cloudlinux.com/cloudlinux/sources/cln/cldeploy Resolving repo.cloudlinux.com (repo.cloudlinux.com)… 23.111.175.211, 2604:4500:6:203f::5 Connecting to repo.cloudlinux.com (repo.cloudlinux.com)|23.111.175.211|:443… connected. HTTP request sent, awaiting response… 200 OK Length: … Read more

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