cPanel, alongside Web Host Manager, enables and makes web hosting accessible for website administrators.

Before moving to install them, there are a few things to be noted. You should only install cPanel and WHM on a freshly installed Operating system. And you must log in as a root or user with root privileges to install cPanel and WHM.

NetworkManager is a daemon that sits on top of libudev and other Linux kernel interfaces. It provides a high-level interface for the configuration of the network interfaces.

 

cPanel error on new cPanel installation

While installing cPanel on Centos, getting NetworkManager enabled error as below:

022-05-21 06:54:16 106 [3464] ( INFO): cPanel & WHM installation started at: Sat May 21 06:54:16 2022!

2022-05-21 06:54:16 107 [3464] ( INFO): This installation will require 10-50 minutes, depending on your hardware and network.

2022-05-21 06:54:16 108 [3464] ( INFO): Now is the time to get another cup of coffee/jolt.

2022-05-21 06:54:16 109 [3464] ( INFO): The install will log to the /var/log/cpanel-install.log file.

2022-05-21 06:54:16 110 [3464] ( INFO):

2022-05-21 06:54:16 111 [3464] ( INFO): Beginning Installation v3...

2022-05-21 06:54:16 93 [3464] (DEBUG): Parsing command line arguments.

2022-05-21 06:54:16 127 [3464] ( INFO): Install type: standard

2022-05-21 06:54:16 300 [3464] ( INFO): Checking RAM now...

2022-05-21 06:54:16 207 [3464] ( INFO): Checking for NetworkManager now...

2022-05-21 06:54:16 225 [3464] (ERROR): ********************* ERROR *********************

2022-05-21 06:54:16 226 [3464] (ERROR): NetworkManager is installed and running, or   

2022-05-21 06:54:16 227 [3464] (ERROR): configured to startup.             

2022-05-21 06:54:16 228 [3464] (ERROR):

2022-05-21 06:54:16 229 [3464] (ERROR): cPanel does not support NetworkManager enabled 

2022-05-21 06:54:16 230 [3464] (ERROR): systems. The installation cannot proceed.   

2022-05-21 06:54:16 231 [3464] (ERROR):

2022-05-21 06:54:16 232 [3464] (ERROR): See https://go.cpanel.net/disablenm for more  

2022-05-21 06:54:16 233 [3464] (ERROR): information on disabling Network Manager.    

2022-05-21 06:54:16 234 [3464] (ERROR): ********************* ERROR *********************

2022-05-21 06:54:16 235 [3464] (FATAL): Exiting...

 

How can we solve this issue?

Moving onwards, let you see how to fix this error. To do so, we suggest the steps below.

Step:1

Disable NetworkManager service on CentOS server. To get this, use the below command.

systemctl stop NetworkManager.service
systemctl disable NetworkManager.service

You will get the below output:

[root@server1 home]# systemctl stop NetworkManager.service
[root@server1 home]# systemctl disable NetworkManager.service
Removed symlink /etc/systemd/system/multi-user.target.wants/NetworkManager.service.
Removed symlink /etc/systemd/system/dbus-org.freedesktop.NetworkManager.service.
Removed symlink /etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service.

Step:2

Then change the "NM_CONTROLLED=no" parameters in each network configuration file under the /etc/sysconfig/network-scripts directory.

Step:3

Run both the commands and then restart the installation of Cpanel.

systemctl enable network.service
systemctl restart network.service

Then, you can install the cPanel on the CentOS server without getting such an error.

Was this answer helpful? 0 Users Found This Useful (0 Votes)