I've installed cPanel on CentOS7 VM by using following commands:
sudo su root
clear
yum -y install perl
hostname vps.DOMAINNAME
cd /home
curl -o latest -L https://securedownloads.cpanel.net/latest
sh latest
Then I've got Network Manager error: NetworkManager is installed and running
. Hence, I disabled Network Manager using following command.
systemctl stop NetworkManager.service
systemctl disable NetworkManager.service
Then I reinstalled cPanel using following command:
curl -o latest -L https://securedownloads.cpanel.net/latest
sh latest
Then, after installing cPanel, I've got some url https://SERVERIP:PORT
, but click on this url gave me ERR_CONNECTION_TIMED_OUT
.
So, I decided to open ports on the Firewall by creating a rule:
Name : allroute
Logs: On
Network : Default
Priority: 1000
Direction : Ingress
Action on match : Allow
Targets : All instances in the network
Source filter : IP ranges
Source IP ranges : 0.0.0.0/0
Second Source filter : None
Protocal and ports : Specified protocals and ports
tcp : 1-65535
udp : 1-65535
Unfortunately, it didn't work. Please help me to solve this issue. Thanks for your time and help.