Monday, December 15GNOME IT SOLUTIONS LLC

cPanel

Install cPanel & WHM on AlmaLinux 8/9 (Fresh Server Guide)

Install cPanel & WHM on AlmaLinux 8/9 (Fresh Server Guide)

cPanel, GNOME LATEST POST
Step-by-Step: Install cPanel & WHM on a Fresh Server These steps assume: OS: AlmaLinux 8 / 9 (or other supported RHEL-like) Fresh server (no control panel installed) Root SSH access Step 1: Login as root ssh root@your_server_ip If you’re logged in as a sudo user: sudo -i Step 2: Set a hostname cPanel requires a FQDN (like server.yourdomain.com): hostnamectl set-hostname server.yourdomain.com Also add it in /etc/hosts: nano /etc/hosts Add a line like: your_server_ip server.yourdomain.com server Save & exit. Step 3: Update the system yum update -y or on newer: dnf update -y Reboot if kernel updated: reboot Reconnect SSH. Step 4: Disable NetworkManager (if required) On some setups cPan...
How to install mcrypt for PHP 7.2 and PHP 7.3 on Centos 7(cPanel)

How to install mcrypt for PHP 7.2 and PHP 7.3 on Centos 7(cPanel)

centos, cPanel
how easy it is to install mcyrpt for PHP 7.2 and PHP 7.3 via Pecl for Easy Apache4 on Centos 7(cPanel). PHP officially deprecated mcrypt as of PHP 7.1 and this causes issues for sites whos CMS still requires it but want to run later PHP versions. More about that official notice is here. Mcrypt installation process Install epel-release repoInstall libmycrpt and libmcrypt-devel rpms needed for the PHP extensions.Update all Pecl php versions.Install Mcrypt PHP extensions via Pecl for PHP72 and PHP73Restart Apache/Litespeed to activate the extensions Install epel-release repo if you do not already have it installed yum install epel-release Install libmycrpt and libmcrypt-devel rpms needed for the PHP extensions. yum install libmcrypt libmcrypt-devel Update all Pecl php ...
Find Files Containing Specific Text in Linux (grep & find Guide)

Find Files Containing Specific Text in Linux (grep & find Guide)

cPanel, Other Linux, Vmware
Find files containing specific text using grep commandgrep is a command-line utility for searching plain-text data sets for lines that match a regular expression. Its name comes from the ed command g/re/p (globally search a regular expression and print), which has the same effect: doing a global search with the regular expression and printing all matching lines. Grep was originally developed for the Unix operating system, but later available for all Unix-like systems. grep command syntax grep "text string to search” directory-path grep [option] "text string to search” directory-path grep -r "text string to search” directory-path grep -r -H "text string to search” directory-path egrep -R "word-1|word-2” directory-path egrep -w -R "word-1|word-2” directory-path Fi...
How To Install CPanel / WHM On Centos7 Server?

How To Install CPanel / WHM On Centos7 Server?

cPanel, Proxmox
What is cPanel? You can understand cPanel as a Linux based web hosting control panel with which you can attain a graphical interface as well as automation tools that are purely designed for simplifying a website or email hosting. It is the most reliable and perceptive commercial control panel for web hosting services. You can get it in a rich-featured form that is used by a powerful graphical user interface to manage entire shared, reseller and business hosting services. Why cPanel is required? We need cPanel simply due to the fact that it is the best web-based control panel in the market. No other web hosting management software can match its features and functionality. It is much safer and easy to use. In this article, we will focus on how to install cPanel and WHM on Cen...