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 - rcschaff

Pages: 1 ... 33 34 [35] 36 37 ... 55
511
PHP / Re: PHP Rebuild/Update Problem
« on: May 08, 2020, 07:47:14 AM »
because it failed once, it may be causing more harm than good.

You should try
cd /usr/local/src/php-build/php-7.3.17
\rm -rf *

And see if rebuilding works.
I noticed a major issue with tar and tar.gz files labeled tar.gz.(1,2,3...)

513
PHP / Re: PHP Rebuild/Update Problem
« on: May 08, 2020, 06:21:38 AM »
Try replace "make" with "cmake" and see what happens.

514
if the service is already running, and you try to start it again, of course you are going to get bind errors.   try "nginx -s reload" if you want to reload config files, other than that, leave it alone.

Your only issue is apache failing to start due to trying to bind to port 80 as well.  That should have been resolved.  If your saying the systemctl doesn't list an httpd service:

nano /usr/lib/systemd/system/httpd.service

Code: [Select]
[Unit]
Description=Web server Apache
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/apache/bin/apachectl start
ExecReload=/usr/local/apache/bin/apachectl graceful
ExecStop=/usr/local/apache/bin/apachectl graceful-stop

[Install]
WantedBy=multi-user.target
systemctl enable httpd
systemctl start httpd

515
DNS / Re: Multiple CWPPro using same NS1 and NS2
« on: May 08, 2020, 02:46:31 AM »
Ns1 and ns2 would need the slave DNS setup on them.  Then each server would replicate to them.  You would use ns1 and ns2 as the nameservers on ns10.  Also every server has to have pro to send to ns1

516
systemctl stop nginx
Systemctl stop httpd
Killall httpd
Killall nginx
Systemctl start nginx
Systemctl start httpd

Post any errors

517
Make sure your vhosts aren't trying to bind to 80

518
Try yum install openssl-dev or devel, not sure which.  Then try again

519
Apa he needs to listen on 8181, not 80

520
If your using nginx as a reverse proxy, it should be a non factor.  If your using it standalone, it requires php-fpm.  If you did not install the fpm module for 7.2, then it will not work.

521
CentOS-WebPanel GUI / Re: cwp to cep migration- firewall issue
« on: May 07, 2020, 02:50:43 PM »
If it works without the firewall, just migrate with it off.  Unfortunately, we cannot see how exactly CWP migrates because of encrypted code.  If they are using rsync, it could possibly be that port 843 needs to be open, but I can't be sure... 

522
It takes around 20 minutes to completely build, at which point it should switch version.  I just did it on a test server, and it worked for me.

You could try rebuilding the Vhosts to see if it's an issue with the Server itself.

523
If you are relying on the phpinfo from CWP Admin Panel, that is not an accurate description of what PHP version your websites are using.  PHP Version Switcher is for the hosted websites.  So it may be confusing.

524
CentOS-WebPanel Bugs / Re: file_get_contents local file issue
« on: May 07, 2020, 01:19:56 PM »
It's neither.  DNS worked exactly as expected when using the FQDN.  Your machine looked up the IP address of the domain, and it returns the Public IP.  Your issue is with the way NAT works, which is exactly what it is also supposed to be doing.   

So your solution of adding the domains to the hosts file is a great workaround.  The other one can be found here:
Code: [Select]
https://www.the-art-of-web.com/system/iptables-nat/

525
Yum remove python36u-libs-3.6.8-1.el7.ius.x86_64
Yum update
Yum install cmake3

Pages: 1 ... 33 34 [35] 36 37 ... 55