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.
241
Other / Re: FYI - Linux Malware Detect failing on AlmaLinux 8/9
« on: December 27, 2024, 08:25:10 AM »
Yes, it was installed via CWP.
Most likely I installed the packages required by maldet for some other software installed on the server. That is why I don't have the problem with maldet.
Most likely I installed the packages required by maldet for some other software installed on the server. That is why I don't have the problem with maldet.
242
Other / Re: FYI - Linux Malware Detect failing on AlmaLinux 8/9
« on: December 26, 2024, 09:31:42 AM »
Hi,
Thanks. Is it for new systems or does maldet crash after some update ? Just checked maldet on a few AlmaLinux systems controlled by me and found maldet is working fine:
Thanks. Is it for new systems or does maldet crash after some update ? Just checked maldet on a few AlmaLinux systems controlled by me and found maldet is working fine:
Code: [Select]
# systemctl status maldet
● maldet.service - Linux Malware Detect monitoring - maldet
Loaded: loaded (/usr/lib/systemd/system/maldet.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2024-10-04 15:24:32 EEST; 2 months 22 days ago
243
PHP Selector / Re: Selecting PHP 8.3.x with ionCube
« on: December 25, 2024, 11:15:28 AM »
Ya, two things could cause the problem:
1. Wrong path and/or filename to load the ionCube lib
2. Outdated ionCube loader libs
I decided to provide full set of steps to fix the problem if it is caused by any of these.
Anyway, I am glad to hear you solved the problem.
1. Wrong path and/or filename to load the ionCube lib
2. Outdated ionCube loader libs
I decided to provide full set of steps to fix the problem if it is caused by any of these.
Anyway, I am glad to hear you solved the problem.
244
CentOS-WebPanel Bugs / Re: User panel not working
« on: December 24, 2024, 01:42:14 PM »
AlmaLinux 9 ? If so, check this page:
https://forum.centos-webpanel.com/other/i-have-problem-with-users-panel-login-page-it-show-to-me-failed-cwp-alma-linux9/msg49587/#msg49587
https://forum.centos-webpanel.com/other/i-have-problem-with-users-panel-login-page-it-show-to-me-failed-cwp-alma-linux9/msg49587/#msg49587
245
PHP Selector / Re: Selecting PHP 8.3.x with ionCube
« on: December 24, 2024, 08:34:15 AM »
Update ionCube manually:
Code: [Select]
cd /usr/local/src/
rm -rf ioncube*
wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar -xvzf ioncube_loaders_lin_x86-64.tar.gz
mv /usr/local/ioncube /usr/local/ioncube_old
chown -R root.root ioncube
mv ioncube /usr/local/
mv /usr/local/php/php.d/ioncube.ini /usr/local/php/php.d/ioncube.ini_old
echo "zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.3.so" > /usr/local/php/php.d/ioncube.ini
246
CentOS-WebPanel Bugs / Re: Cannot log in to the MySQL server
« on: December 20, 2024, 08:35:01 PM »
Make sure your account isn't out of free space. If it is ok then try to reset your CWP password and then make new attempt to access MySQL using PHPMyAdmin.
247
Updates / Re: Problem Yesterday Update (19Dic)
« on: December 20, 2024, 06:08:55 AM »
Did you check error logs of the subdomains to find what cases the problem ? Please show us the errors.
248
CentOS-WebPanel GUI / Re: CWP Invalid session on login
« on: December 19, 2024, 10:48:20 PM »Here's a starting point...
https://www.alphagnu.com/topic/28-cwp-apache-restore-original-visitor-ips-with-mod_remoteip-when-using-cloudflare-proxy/
It will not work and here is why:
CWPSRV is based on Nginx and compiled without ngx_http_realip_module:
https://nginx.org/en/docs/http/ngx_http_realip_module.html
Here is the compilation options of cwpsrv:
Code: [Select]
configure arguments: --prefix=/usr/local/cwpsrv --sbin-path=/usr/local/cwpsrv/bin/cwpsrv --conf-path=/usr/local/cwpsrv/conf/cwpsrv.conf --pid-path=/usr/local/cwpsrv/var/run/nginx.pid --error-log-path=/usr/local/cwpsrv/logs/error_log --http-log-path=/usr/local/cwpsrv/logs/access_log --user=root --group=root --with-http_ssl_module --with-http_gzip_static_module --with-file-aio --with-http_secure_link_module --with-http_ssl_module --add-module=src/misc/ngx_http_auth_pam_module
Sure, it is possible to recompile cwpsrv but you will have to do it every time once cwpsrv binary package is updated.
Therefore, I think will be better if the developers of CWP add support of ngx_http_realip_module to cwpsrv.
249
Backup / Re: Is there a backup guide?
« on: December 18, 2024, 10:13:46 AM »
CWP provides two backup systems. Look here:
https://www.inmotionhosting.com/support/edu/control-web-panel/cwp-admin/server-management/cwp-backups/
It will explain you how to set up tasks to make backups.
If the backup systems provided by CWP satisfy your requirements then you don't need to create your own script for backups.
https://www.inmotionhosting.com/support/edu/control-web-panel/cwp-admin/server-management/cwp-backups/
It will explain you how to set up tasks to make backups.
If the backup systems provided by CWP satisfy your requirements then you don't need to create your own script for backups.
250
E-Mail / Re: Do updates to email filter templates apply retrospectively?
« on: December 17, 2024, 10:51:58 PM »
It is not clear how you added/created the email filter template. Could you elaborate more about this ?
251
Migration from other control panels / Re: AlmaLinux 8 CWP -> AlmaLinux 9 CWP Migration
« on: December 17, 2024, 08:02:18 AM »
Does the password contain some special chars like "!@#$%^&*()_+" ?
252
CentOS-WebPanel Bugs / Re: CentOS 9 stream CWP installation problem
« on: December 16, 2024, 06:41:45 PM »On the server already installed php+mysql (mariadb) and webpages working well.
But I can`t finish cwp installation.
The server must be clean without nginx, apache, php, mysql/mariadb.
253
How to / Re: Increase /root Partition in CWP?
« on: December 16, 2024, 08:50:46 AM »
If you can access the server using VNС and the server can be booted from a bootable USB flash drive then the simplest way to resize partitions is:
(Make backup of your data before you do any changes.)
1. Make bootable USB drive using "SystemRescue Disk". The image can be downloaded here:
https://www.system-rescue.org/Download/
2. Boot the server from the created USB drive.
3. Run "startx" to run graphical interface if the server is booted in text mode.
4. Find and run "GPARTED" from the start menu. GPARTED allows you to manage the partitions using mouse (shrink "/home" and increase "/")
5. Apply the changes and wait some time to allow all necessary steps to be performed by GPARTED.
6. Reboot the server.
Please note you do it on your own risk.
(Make backup of your data before you do any changes.)
1. Make bootable USB drive using "SystemRescue Disk". The image can be downloaded here:
https://www.system-rescue.org/Download/
2. Boot the server from the created USB drive.
3. Run "startx" to run graphical interface if the server is booted in text mode.
4. Find and run "GPARTED" from the start menu. GPARTED allows you to manage the partitions using mouse (shrink "/home" and increase "/")
5. Apply the changes and wait some time to allow all necessary steps to be performed by GPARTED.
6. Reboot the server.
Please note you do it on your own risk.
254
I can build it / Re: Server IP problem on phpbb records
« on: December 15, 2024, 04:25:42 PM »
Does the website use CloudFlare ?
255
CentOS 7 Problems / Re: Excessive resource usage: rpc (2453 (Parent PID:2453))
« on: December 14, 2024, 08:52:41 AM »
I do not want to ignore a warning. I want what the warning is and correct it.
What needs to be done to correct?
CSF/LFD is configured to send warnings if some process running more than 1800 seconds on your server. As you can see from the warning message rpcbind works more than 1800 seconds. That is why you got the email.
It is ok for rpcbind because it is a daemon. So add the process to exceptions (/etc/csf/csf.pignore) as @Sandeep recommended or stop/disable rpcbind if you don't need it.
