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 ... 10 11 [12] 13 14 ... 71
166
PHP Selector / Re: phpfm not work
« on: May 02, 2024, 01:54:53 AM »
If you added PHP-FPM 8.3, you have to move forward the user config files from 8.1 or 8.2, editing their contents to reflect the proper version...

Code: [Select]
cp /opt/alt/php-fpm82/usr/etc/php-fpm.d/users/user.conf /opt/alt/php-fpm83/usr/etc/php-fpm.d/users/user.conf
nano /opt/alt/php-fpm83/usr/etc/php-fpm.d/users/user.conf
Change the socket and slowlog references to the new 8.3 version:
Code: [Select]
[user]
listen = /opt/alt/php-fpm83/usr/var/sockets/frogstew.sock
listen.allowed_clients = 127.0.0.1

;listen.owner = "user"
listen.group = "nobody"
listen.mode = 0660
user = "user"
group = "user"

;request_slowlog_timeout = 15s
;slowlog = /opt/alt/php-fpm83/usr/var/log/php-fpm-slowlog-user.log

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

env[HOSTNAME] = $HOSTNAME
env[TMP] = /home/user/tmp
env[TMPDIR] = /home/user/tmp
env[TEMP] = /home/user/tmp
env[PATH] = /usr/local/bin:/usr/bin:/bin

167
DKIM / Re: DKIM not need to start
« on: May 02, 2024, 01:49:05 AM »
You must have DMARC, DKIM, and SPF records in place to interact with Gmail. Also start looking into ARC, because it will be the next thing to support down the road...

168
CentOS 8 Problems / Re: mysql get 300% cpu
« on: May 02, 2024, 01:47:29 AM »
How many cores? Dedicated or VPS? What is your typical load and how many user accounts do you have? Have you done any MySQL tuning? The CWP dashboard is notoriously unreliable. Have you watched htop or Netdata on your server for awhile?

169
Precious little details are being provided to be able to offer a diagnosis or solution to this problem. More details, logs, assurances of open firewall ports, etc.

171
CentOS 7 Problems / Re: Google indexing link to CWP
« on: April 25, 2024, 08:45:40 PM »
Do you actually use the "cpanel" service record? That's one I don't support for my servers; I require my clients to append :2083, which is familiar to many people coming from cPanel servers

173
E-Mail / Re: Email is neither received nor sent.
« on: April 24, 2024, 09:46:49 PM »
Zone editor is just a PHP front end for BIND. But your error seems to indicate that the PHP file itself is corrupt, perhaps due to an incomplete update. You may have to re-apply the last CWP update or try applying a beta version to see if that fixes it.

174
Information / Re: MinSpareThreads/MaxRequestWorkers
« on: April 24, 2024, 03:06:46 AM »
You can put those directives in the main httpd.conf or in a vhost conf file if it's only needed in that context. You won't find examples already in the conf files -- you'll have to draw from the documentation or from other online examples.

175
4GB RAM is not a whole lot to work with, so you'll have to parcel it out and do some memory tuning. That said, I run quite a few clients/sites on a server with 6GB of RAM and it does okay. Is your php.ini stock or have you tweaked it any?

176
CentOS 7 Problems / Re: How do you increase these memories
« on: April 24, 2024, 02:54:47 AM »
Raise your PHP memory limits or put the process in / etc / csf /csf.pignore.

177
E-Mail / Re: Email is neither received nor sent.
« on: April 22, 2024, 10:27:45 PM »
Do you have valid rDNS / PTR record in place (provided by your hosting provider/ISP)?

Your SPF record doesn't look like complete, correct syntax; it should be more like this:
Code: [Select]
v=spf1 ip4:192.0.2.0 include:example.com -all
https://www.cloudflare.com/learning/dns/dns-records/dns-spf-record/

178
Updates / Re: Upgrade Nginx
« on: April 19, 2024, 04:45:25 PM »
Webserver. CWP runs under Apache.

179
CSF Firewall / Re: Suspicious File Alert
« on: April 18, 2024, 10:47:05 PM »
My systems have "core.py" as included in both versions of python:
Code: [Select]
/usr/lib/python2.7/site-packages/di/core.py
/usr/lib/python2.7/site-packages/pyudev/core.py
/usr/lib/python3.6/site-packages/pip/_vendor/certifi/core.py
/usr/lib/python3.6/site-packages/pip/_vendor/idna/core.py
/usr/lib64/python2.7/distutils/core.py
/usr/lib64/python3.6/distutils/core.py
I don't have anything like your salt directory under /tmp. Do you see any processes running that create those tmp files?

180
CSF Firewall / Re: Suspicious File Alert
« on: April 18, 2024, 05:54:00 PM »
Are you running Python 2.7 or 3.6 on that system? Do you actually make use of it for any web facing apps, or just PHP?

Pages: 1 ... 10 11 [12] 13 14 ... 71