Re: [users@httpd] httpd won't start with SQLSRV enabled

2018-06-29 Thread Frank Gingras
The last 100 lines of the trace or so should tell you if httpd stopped by itself because of the mod_php issue. In your log, there is no such indication. Try to capture a test case where: 1) That php extension is loaded 2) httpd stops with httpd -X If httpd keeps running with -X while that extens

Re: [users@httpd] httpd won't start with SQLSRV enabled

2018-06-29 Thread James Montalvo
Yes, mod_php. I've run stack traces and didn't see anything stand out. At the bottom of this email is the last couple hundred lines of the output from `strace -o /tmp/st -s 5000 httpd -X`, the last couple lines being when I ctrl-c killed it after several minutes. Do you see anything that I'm missin

Re: [users@httpd] two servers and sites on single IP

2018-06-29 Thread Dr James Smith
mod_proxy is the standard approach here.. Set up a second vhost on 192.168.0.1 and get that to proxy back to 192.168.0.2 You will need to specify a small folder as doc root - basically to serve error pages! - our error directory has static pages for each error message we wont to handle + css

Re: [users@httpd] two servers and sites on single IP

2018-06-29 Thread Louis
On 2018-06-29 10:26 AM, Jerry Arnold wrote: Does bar.me.com have to run on 192.168.0.2?  There is no reason you can't run multiple domains on the same IP Thanks -- but yes; two separate boxes with different o/s. I have tried setting up a new "bar.conf" on"foo" -- but am having difficulties wi

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-29 Thread Frank Gingras
You're referring to php *extensions*, to be clear. A module with httpd would be a DSO, such as mod_php. Further, httpd modules are not unloaded as such; they remain loaded for the entire life of every child process. Anyway, if your php extension can't be loaded for whatever reason, it would be use

Re: [users@httpd] two servers and sites on single IP

2018-06-29 Thread Jerry Arnold
Does bar.me.com have to run on 192.168.0.2? There is no reason you can't run multiple domains on the same IP https://httpd.apache.org/docs/2.4/vhosts/examples.html VirtualHost Examples - Apache HTTP Server Version 2.4 httpd.apache.org Yo

[users@httpd] two servers and sites on single IP

2018-06-29 Thread Louis
Hopefully simple, but I'm now getting confused. Currently, single server1 192.168.0.1 (Apache 2.4) running single site foo.me.com on single static IP. Rock solid for the last six years. Need to add server2 192.168.0.2 (Apache 2.4) for site bar.me.com on the same static IP. What is the faste