This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1
CentOS 9 Problems / Re: Can not login to CWP after changed vps password
« on: January 21, 2025, 05:36:03 AM »
What type of system does your VPS use (Proxmox, KVM, etc)? I find it hard to believe that changing your VPS password with a VPS control panel would also change your CWP root password!
2
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 11:31:28 PM »
You shouldn't need an explicit crontab, as the daily jobs fire off if they are in place in that dir and have the proper permissions. But if you want an explicit root cron job, make sure you trigger it **after** the CWP daily anacron tasks.
Code: [Select]
0 5,12 * * * /usr/bin/yum -y update --security > /dev/null 2>&1
3
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 06:35:27 PM »
This runs after the daily cwp task:
/etc/cron.daily/yum
/etc/cron.daily/yum
Code: [Select]
#!/bin/sh
/usr/bin/yum -y update --security
4
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 05:29:45 AM »
I added yum -y update to the daily cron and haven't looked back -- no update notices. Now I only get PHP build notices and the monthly nag about CWP Secure Kernel (which I have no use for). You could do the same with dnf on EL8/EL9.
5
Problems on other RedHat linux servers / Re: rDNS/PTR = FAILED...
« on: January 18, 2025, 06:42:58 PM »
You need forward and reverse DNS, both agreeing in order to be considered a valid sending source for other servers to accept mail. It should not be tied to a particular user account. What is the server's FQDN?
6
Problems on other RedHat linux servers / Re: I can send and receive messages via the web, but it doesn't work through the...
« on: January 18, 2025, 06:41:14 PM »
Def. an encryption problem -- not able to establish a secure connection. Is your Roundcube still set for defaults? Is it checking with SSL/TLS or STARTTLS? Roundcube checks the localhost, but mail ports may not be open for remote connections. What CSF ports do you have open for mail? Incoming: 143, 993, 995? Outgoing: 25, 465, 587?
7
PHP Selector / Re: Support for PHP 8.4
« on: January 17, 2025, 06:20:57 PM »
https://php.watch/versions
8.4 was released 11/21/2024 -- so not long in this world. Be patient, CWP support will come!
(Personally, I live toward the tail end of support, so things are not bleeding edge or tend to have vulnerabilities, but are still actively supported before EOL.)
8.4 was released 11/21/2024 -- so not long in this world. Be patient, CWP support will come!
(Personally, I live toward the tail end of support, so things are not bleeding edge or tend to have vulnerabilities, but are still actively supported before EOL.)
8
Problems on other RedHat linux servers / Re: Excessive resource usage....
« on: January 16, 2025, 05:12:21 AM »
You can tame these notices easily -- add to /etc/csf/csf.pignore
https://www.knownhost.com/kb/common-csf-lfd-false-positives-and-how-to-stop-the-notifications/
https://www.knownhost.com/kb/common-csf-lfd-false-positives-and-how-to-stop-the-notifications/
9
Installation / Re: PHP-FPM on AlmaLinux 9
« on: January 16, 2025, 12:19:58 AM »
No, not really with a caustic attitude like that.
10
CentOS-WebPanel Bugs / Re: CENTOS 7 to AlmaLinux 9 CWP to CWP Migration issue
« on: January 15, 2025, 04:34:32 PM »
CWP to CWP Migration still has issues in AlmaLinux 9 (CWP for EL9 is still in beta).
Can you migrate to an AlmaLinux 8 server (which is still supported till the end of the decade)? Then you could upgrade to AlmaLinux 9 if you so desired.
Can you migrate to an AlmaLinux 8 server (which is still supported till the end of the decade)? Then you could upgrade to AlmaLinux 9 if you so desired.
11
Problems on other RedHat linux servers / Re: daily "Anacron" messages?
« on: January 15, 2025, 04:32:04 PM »
Did you change the default php.ini to be more "chatty" about errors? It is printing NOTICE errors to your output, but they are just notices, not fatal errors.
https://phoenixnap.com/kb/php-error-types
Do you have this in your php.ini:
https://phoenixnap.com/kb/php-error-types
Do you have this in your php.ini:
Code: [Select]
error_reporting = E_ALL
display_errors = On
Instead, try:Code: [Select]
error_reporting = E_ERROR
display_errors = Off
12
Problems on other RedHat linux servers / Re: the sequence of settings...?
« on: January 15, 2025, 04:23:55 PM »
I think AWS Monster's guide/notes is a good reference:
https://www.awsmonster.com/cwp-installation-and-configuration_12
https://www.awsmonster.com/part-1-cwp-basic-configuration-after
https://www.awsmonster.com/part-2-cwp-basic-configuration-after
I've been tempted to create something for my own reference and for the good of others, but I would have to wait until I next set up another CWP server.
Starburst?
https://www.awsmonster.com/cwp-installation-and-configuration_12
https://www.awsmonster.com/part-1-cwp-basic-configuration-after
https://www.awsmonster.com/part-2-cwp-basic-configuration-after
I've been tempted to create something for my own reference and for the good of others, but I would have to wait until I next set up another CWP server.
Starburst?
13
CSF Firewall / Re: cannot enter 2083 using putty
« on: January 15, 2025, 04:20:08 PM »
I'm not sure what you're trying to accomplish for PuTTY. Usually it is used for telnet connections on port 23 (unencrypted) or SSH on port 22. I'm not understanding what it has to do with port 2083 (CWP user panel via HTTPS).
14
CSF Firewall / Re: cannot enter 2083 using putty
« on: January 15, 2025, 03:17:17 AM »
Are you trying to SSH in? If so, it wouldn't be port 2083, it would be port 22 by default, but I recommend you change it to an alternate port, because FritzFrog wants to get on your server (along with a million script kiddies)!
https://arstechnica.com/information-technology/2022/02/after-lying-low-ssh-botnet-mushrooms-and-is-harder-than-ever-to-take-down/
https://wiki.centos-webpanel.com/how-to-change-ssh-port
https://arstechnica.com/information-technology/2022/02/after-lying-low-ssh-botnet-mushrooms-and-is-harder-than-ever-to-take-down/
https://wiki.centos-webpanel.com/how-to-change-ssh-port
15
Information / Re: Demo not work...
« on: January 13, 2025, 12:04:50 AM »
Works here...
End-User Demo Login
http://demo1.control-webpanel.com:2082
http://demo2.control-webpanel.com:2082
http://demo3.control-webpanel.com:2082
Username: testacc
Password: admin123
root/Admin Demo Login
http://demo1.control-webpanel.com:2030
http://demo2.control-webpanel.com:2030
http://demo3.control-webpanel.com:2030
Username: root
Password: admin123
End-User Demo Login
http://demo1.control-webpanel.com:2082
http://demo2.control-webpanel.com:2082
http://demo3.control-webpanel.com:2082
Username: testacc
Password: admin123
root/Admin Demo Login
http://demo1.control-webpanel.com:2030
http://demo2.control-webpanel.com:2030
http://demo3.control-webpanel.com:2030
Username: root
Password: admin123