Author Topic: No Access to Centos Web Panel  (Read 6291 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
No Access to Centos Web Panel
« on: May 13, 2021, 01:58:52 AM »
I cannot access the Centos Web Panel on any web browser. My IP address is 167.114.144.228

Offline
*
Re: No Access to Centos Web Panel
« Reply #1 on: May 13, 2021, 03:26:15 PM »
You need to put the port number at the end of the IP address. 

Try this

https://167.114.144.228:2031/login/index.php

Offline
*
Re: No Access to Centos Web Panel
« Reply #2 on: May 16, 2021, 10:13:35 PM »
If port 2031 is not accessible, use 2087

https://167.114.144.228:2087

Offline
*****
Re: No Access to Centos Web Panel
« Reply #3 on: May 18, 2021, 05:07:44 AM »
I cannot access the Centos Web Panel on any web browser. My IP address is 167.114.144.228

I would not recommend showing the real server IP on forums  ;)
You can ask me to solve any problem with your server for some money in pm  ;)
Services Monitoring & RBL Monitoring
http://centos-webpanel.com/services-monitor
Join our Development Team and get paid !
http://centos-webpanel.com/develope-modules-for-cwp

Installation Instructions
http://centos-webpanel.com/installation-instructions
Get Fast Support Here
http://centos-webpanel.com/support-services

Offline
*
Re: No Access to Centos Web Panel
« Reply #4 on: March 10, 2022, 08:42:03 PM »
I tried using https://ipaddress:port/login/index.php and port 2087. I am getting the following message:

Warning: mysqli_connect(): (HY000/2002): Connection refused in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0

Warning: mysqli_connect(): (HY000/2002): Connection refused in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0

Warning: mysqli_connect(): (HY000/2002): Connection refused in /usr/local/cwpsrv/htdocs/admin/admin/index.php on line 0

Warning: mysqli_connect(): (HY000/2002): Connection refused in /usr/local/cwpsrv/htdocs/admin/admin/index.php on line 0


DISK FULL: Can't start MySQL!


Warning: mysqli_error() expects exactly 1 parameter, 0 given in /usr/local/cwpsrv/htdocs/admin/admin/index.php on line 0
Could not connect:

I should not have posted the actual IP address. I don't know what I was thinking.

Offline
****
Re: No Access to Centos Web Panel
« Reply #5 on: March 10, 2022, 09:11:01 PM »
Quote
DISK FULL: Can't start MySQL!

Log into your server:

cd /var/log
rm -rf *.1
rm -rf *.gz


Free up some space, then start mysqld service
Google Hangouts:  rcschaff82@gmail.com

Offline
*
Re: No Access to Centos Web Panel
« Reply #6 on: March 10, 2022, 09:58:12 PM »
Quote
DISK FULL: Can't start MySQL!

Log into your server:

cd /var/log
rm -rf *.1
rm -rf *.gz


Free up some space, then start mysqld service

Are those the commands I used to free up some space?

Offline
*
Re: No Access to Centos Web Panel
« Reply #7 on: March 10, 2022, 10:30:30 PM »
I check the disk space of my virtual private server and I notice that dev/vda1 is 100% full. How do I clear about space because I don't know what clogging the system?

Offline
****
Re: No Access to Centos Web Panel
« Reply #8 on: March 10, 2022, 11:36:48 PM »
log files are clogging up your system.  Remove all of the files in /var/log that do not end with .log

Also, to find the large files on the system,
cd /
du -hsx * | sort -rh | head -10

Then start hammering down the largest directories to find the largest files
« Last Edit: March 10, 2022, 11:39:13 PM by rcschaff »
Google Hangouts:  rcschaff82@gmail.com

Offline
*
Re: No Access to Centos Web Panel
« Reply #9 on: March 15, 2022, 03:04:55 PM »
The following directories are causing the problem home, usr, backup, and var

Offline
*
Re: No Access to Centos Web Panel
« Reply #10 on: March 15, 2022, 03:09:07 PM »
Furthermore, the backup directory is too high. How do I delete backup files?

Offline
*
Re: No Access to Centos Web Panel
« Reply #11 on: March 15, 2022, 03:49:02 PM »
Problem solved. Thank you!