Show Posts

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.


Messages - overseer

Pages: 1 ... 7 8 [9] 10 11 ... 101
121
PHP / Re: AH01075: Error dispatching request to : (polling)
« on: May 22, 2025, 11:42:20 PM »
Have you looked at the per-user tuning available under that version of php-fpm?
/opt/alt/php-fpm82/usr/etc/php-fpm.d/users/username.conf
Code: [Select]
pm = ondemand
pm.max_children = 4
pm.max_requests = 4000
pm.process_idle_timeout = 15s

;listen.backlog = -1
;request_terminate_timeout = 0s
rlimit_files = 131072
rlimit_core = unlimited
catch_workers_output = yes
Additionally/alternately, you could tune the particular vhost conf to include various FastCGI parameters that could help mitigate your issue. Here is what I have on a demanding Drupal site under Nginx:
Code: [Select]
        fastcgi_pass unix:/opt/alt/php-fpm82/usr/var/sockets/username.sock;
        fastcgi_split_path_info ^(.+?\.php)(|/.*)$;
        try_files $fastcgi_script_name =404;
        fastcgi_index    update.php;
        include              fastcgi_params;
        fastcgi_buffers 16 16k;
        fastcgi_buffer_size 32k;
        # Block httpoxy attacks. See https://httpoxy.org/.
        fastcgi_param HTTP_PROXY "";
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param QUERY_STRING $query_string;
        fastcgi_intercept_errors on;

122
MySQL / Re: Can not update MariaDB
« on: May 22, 2025, 10:42:24 PM »
I suppose you mean 11.4? I always refer to this chart for MariaDB version lifetimes:
https://endoflife.date/mariadb

123
Did you reboot and reset the r00t password after the change?

124
MySQL / Re: Can not update MariaDB
« on: May 22, 2025, 12:48:19 AM »
sorry, what?

125
PHP / Re: AH01075: Error dispatching request to : (polling)
« on: May 21, 2025, 09:09:56 PM »
What is using it? WP? Another CMS? There should be some tuning you could do for it.
A kludge workaround would be to restart php-fpm82 shortly after the timeframe you are observering (nightly at 00:15).

126
Wish they did; consider that a "hotfix" since it was from a CWP developer originally -- good for any EL9 distribution (Alma, Rocky, won't mention RHEL or *ahem* Stream).

127
:2087 is the admin panel, so you will not be able to login as a normal user, only root.
:2083 is the user control panel (and I would not recommend using the non-SSL :2082).
This is a known issue with EL9 under CWP, so you need to make one small change, reset the user password and then they will be able to login:
https://forum.centos-webpanel.com/other/i-have-problem-with-users-panel-login-page-it-show-to-me-failed-cwp-alma-linux9/msg49587/#msg49587

128
E-Mail / Re: Spamassassin Restarting regulary
« on: May 21, 2025, 01:22:33 PM »

129
SSL / Re: Probelm with renewing SSL certs
« on: May 20, 2025, 09:15:24 PM »
What SANs do you need for your domain? Netino's script has the basic four used by CWP: mail webmail ftp cpanel (in addition to the common www CNAME, which is included in the main domain). Do you not use the "mail" SAN? Personally, I use the other three, but not cpanel.

130
Updates / Re: Problems occurring with YUM UPDATE
« on: May 18, 2025, 09:51:02 PM »
MariaDB 10.5 was also an LTS version, with support just now ending. So best to move to either 10.6 or 10.11, but no reason not to take the last LTS in the 10.x series. Other considerations apply with compatibility for the 11.x branch, hence my recommendation:
https://endoflife.date/mariadb

132
CentOS-WebPanel GUI / Re: force webpanel:2087 to server hostname
« on: May 17, 2025, 01:38:31 AM »
I wouldn't run the non-SSL version of the admin port (be it 2030 or 2086). Another unsolicited bit of advice: change to a non-standard port for the SSL admin port instead of 2031 or 2087. Here's a guide to do that:
https://azdigi.com/blog/en/webserver-panel-en/centos-web-panel-en/how-to-change-the-port-on-centos-web-panel-cwp/

As Cyberspace mentioned, if you use Cloudflare, you could use their infrastructure to create access rules to the admin port.

Alternately, you could firewall your connection to limit incoming access with CSF. Do you connect to it via static IP so you could lock it down to allow only a handful of chosen access IPs?

133
CentOS-WebPanel GUI / Re: force webpanel:2087 to server hostname
« on: May 16, 2025, 02:25:10 PM »
Admin panel is 2087; user panel is 2083 (to match cPanel port assignments). Do you mean the admin or user panel?

134
That said, your server will continue to function, but yes -- best to migrate to AlmaLinux 8 and then work toward upgrading to EL9.
Meanwhile, each user on your server should have a SpamAssassin user_prefs directory. Do you see that when you run:
Code: [Select]
ls -l /home/*/.spamassassin/user_prefsPer-user prefs are based on these templates:
Code: [Select]
/usr/share/spamassassin/user_prefs.template
/var/lib/spamassassin/3.004000/updates_spamassassin_org/user_prefs.template

135
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« on: May 15, 2025, 10:54:53 AM »
Your choice to ignore the errors or remove the root of the problem. I just gave that possibility to you in the previous post, now that we've worked out that IPv6 is indeed disabled on your system.

Pages: 1 ... 7 8 [9] 10 11 ... 101