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 ... 75 76 [77] 78 79 80
1141
Other / Re: CWP Forum
« on: January 09, 2023, 10:59:32 AM »
Agreed, please update the forum to the latest version of the forum (2.1.3 -- released Mon, 21 Nov 2022). The currently running version is woefully out of date and subject to many bugs and security issues!

1142
Varnish / Re: Wordpress robust default.vcl ? do you have any?
« on: January 08, 2023, 09:03:01 PM »
Thanks much! I have WordPress sites running under nginx but have had thoughts of integrating Varnish into the flow to milk a little more performance out of the site, esp. since it is more static in nature. I'll give your .vcl a test drive and see how it goes. I'll report back if I have any issues.

1143
Varnish / Re: Drupal VCL tpl file for Varnish
« on: January 08, 2023, 08:59:06 PM »
Thanks much! I have a Drupal 9 site running under nginx but have had thoughts of integrating Varnish into the flow to milk a little more performance out of the site, esp. since it is more static in nature. I'll give your .vcl a test drive and see how it goes. I'll report back if I have any issues.

1144
Problems on other RedHat linux servers / Re: Port 2030 does not open
« on: January 08, 2023, 07:52:45 PM »
And best practice is to run everything under HTTPS -- so you can skip 2030 and go for 2031 instead. I prefer that, as well as 2096 for webmail, instead of HTTP on 2095. (I prefer not to follow cPanel's port conventions, though -- I don't like using 2087 for the admin panel.)

1145
Problems on other RedHat linux servers / Re: CWP working on RHEL 7.4
« on: January 08, 2023, 07:49:24 PM »
Good to know! With Red Hat giving out 16 free licenses to RHEL, it is a viable option for smaller scale operations. I could do use it in my setting with only 4 servers, but will probably go with AlmaLinux or Rocky Linux due to the open source licenses that are unencumbered.

1146
you can try running whowatch to help you determine whodunnit.

1147
CentOS 7 Problems / Re: What do you think about this " ?
« on: January 08, 2023, 08:07:10 AM »
I have to agree with Jose.
Shilling for "BulletProof Security Pro" in this forum seems to be the wrong topic in the wrong forum.

1148
CentOS 7 Problems / Re: /tmp should be owned by root:root
« on: January 08, 2023, 08:05:30 AM »
Yes, /tmp should be owned by root:root:
Code: [Select]
drwxrwxrwt.  18 root root 61440 Jan  8 00:02 tmp

1149
Rather than manually cleaning logs, I suggest truncating them to zero bytes. Safer than recreating things or messing with permissions:
Code: [Select]
[overseer@srv2 ~]$  du -sh /usr/local/cwpsrv/logs/error_log
403M /usr/local/cwpsrv/logs/error_log
[overseer@srv2 ~]$ sudo truncate -s0 /usr/local/cwpsrv/logs/error_log
[overseer@srv2 ~]$  du -sh /usr/local/cwpsrv/logs/error_log
0 /usr/local/cwpsrv/logs/error_log

1150
Did you manually try to edit the mail_queue file? It is IonCube obfuscated (encoded), and CWP explicitly warns agains decoding or tinkering with it:
Code: [Select]
<?php //0042b
// Copyright CentOS WebPanel, Decoding is FORBIDDEN
// All Rights Reserved. www.centos-webpanel.com
if(!extension_loaded('ionCube Loader'...

1151
CentOS 7 Problems / Re: How to change Owner and Group on a Directory
« on: January 08, 2023, 06:55:09 AM »
Here's a fun little one-liner you can execute from a root terminal that will reset ownership on all your user directories in /home:
Code: [Select]
for i in $(ls /home); do chown $i:$i /home/$i; done

1152
CentOS 7 Problems / Re: Cannot access CWP via public IP / domain in LAN
« on: January 08, 2023, 06:47:13 AM »
Does your router support loopback / NAT hairpin?

1153
CentOS 7 Problems / Re: NGINX php-fpm 502 and no sockets created
« on: January 08, 2023, 06:44:17 AM »
This doesn't sound nginx related -- I've encountered this with php-fpm and enabling new versions of PHP. The users directory is not created automatically for that new version after building it and will create an error of the .sock file missing. So you have to copy over your older users directory. For example, after enabling php 8.1, I had to create:
/opt/alt/php-fpm81/usr/etc/php-fpm.d/users
this way:
Code: [Select]
sudo cp -r /opt/alt/php-fpm74/usr/etc/php-fpm.d/users /opt/alt/php-fpm81/usr/etc/php-fpm.d/usersand then edit the new conf files to reflect the new version:
Code: [Select]
sudo perl -pi.back -e 's/php-fpm74/php-fpm81/g;' /opt/alt/php-fpm81/usr/etc/php-fpm.d/users/*.confThen restart the php-fpm process:
Code: [Select]
sudo service php-fpm81 restart

1154
This tutorial seems to be a rather comprehensive explainer. On my end, I haven't enabled IPv6 because it isn't yet needed in our environment. Maybe as things become more parallel it will be worth enabling.

1155
Information / Re: FUNDING CWP DEVELOPMENT TEAM
« on: January 07, 2023, 11:32:09 PM »
I think the current pricing is fair -- esp. when compared to cPanel's pricing tiers (and the overall quality assurance difference) -- but it depends on the # of sites on your server -- to make an economical comparison. My experience over the last 3+ years has been generally good and worth the 3x Pro licenses I carry, along with the 2x paid support tickets (worth it during a cPanel server migration). But there have been headaches and road blocks along the way that cause me to hesitate thinking it is worth more $$ per year, across the board. As suggested, if you are having a fabulous experience with CWP and think it worth it, feel free to donate. For me, I am donating my time and sending back bug reports and contributing to this forum. I also hope to contribute to the wiki & documentation, as there is a lot of updating and spit-n-polish that needs to be done to fill in some of the gaps there.

Pages: 1 ... 75 76 [77] 78 79 80