Re: [users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread Roparzh Hemon
Thanks for your suggestion ohaya, I'll give it a try if all else fails (just a matter of personal taste ... I like to understand why things don't work) On Fri, Mar 18, 2016 at 5:10 PM, o haya wrote: > I don't know the answer to your question, but if there's not something that > is in 2.4.x that

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Dr James Smith
Apache will have already started... try -k restart or -k stop followed by -k start On 19/03/2016 07:21, Roparzh Hemon wrote: Hello all, I get the following error message when I try to launch the Apache server : $ sudo ./bin/apachectl -k start Password: (48)Address already in use: AH00072: make

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Roparzh Hemon
"Apache will have already started... try -k restart or -k stop followed by -k start" Thanks for your suggestion. Unfortunately it doesn't seem to work : $ sudo bin/apachectl -k restart Password: httpd not running, trying to start (48)Address already in use: AH00072: make_sock: could not bind to

[users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Roparzh Hemon
Hello all, I get the following error message when I try to launch the Apache server : $ sudo ./bin/apachectl -k start Password: (48)Address already in use: AH00072: make_sock: could not bind to address [::]:80 (48)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 no

Re: [users@httpd] Environment variable set by "apr_env_set()" not accesible by C function "getenv()" within CGI program

2016-03-19 Thread obsd
On Thu, Mar 17, 2016 at 8:47 PM, Eric Covener wrote: > On Thu, Mar 17, 2016 at 3:38 PM, wrote: >> Hi, >> >> I have an Apache modul where I set an environment variable: >> >> apr_env_set("FOO", "BAR", ...); >> >> This variable is accesible by PHP: >> >> > print(getenv("FOO")); // --> BAR >> ?>

Re: [users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread o haya
Hi What version of Apache? I'm guessing it's 2.4.x? If so, 2.4+ uses APR libraries. If you can't get it to work, maybe you can try the latest 2.2+ version, e.g., 2.2.31 I think, which wouldn't require APR On Fri, 3/18/16, Roparzh Hemon wrote:

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Lester Caine
On 19/03/16 07:46, Roparzh Hemon wrote: > $ sudo bin/apachectl -k restart > Password: > httpd not running, trying to start > (48)Address already in use: AH00072: make_sock: could not bind to > address [::]:80 This tells us two things ... There is something already using port 80 It's not been start

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Roparzh Hemon
Thanks for your help Lester. When I try "http://localhost"; in my browser I get a "403 Forbidden : you dont have permission to access / on this server" message. I installed Apache manually in my personal location (although I already have the Mac's builtin installation, the reason I'm doing this is

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Lester Caine
On 19/03/16 10:23, Roparzh Hemon wrote: > Thanks for your help Lester. > When I try "http://localhost"; in my browser I get a "403 Forbidden : > you dont have permission to access / on this server" message. > > I installed Apache manually in my personal location (although I > already have the Mac'

Re: [users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread Roparzh Hemon
"What version of Apache? I'm guessing it's 2.4.x? If so, 2.4+ uses APR libraries. If you can't get it to work, maybe you can try the latest 2.2+ version, e.g., 2.2.31 I think, which wouldn't require APR" Yes, I downloaded the latest version, namely 2.4.18. But why should the use of APR lib

Re: [users@httpd] Apache fails to start after updating openssl from 1.0.1j to 1.0.2g

2016-03-19 Thread William A Rowe Jr
There was a well-documented binary breakage in 1.0.2g that has already been fixed in their source repository for the next openssl upgrades. That fix is here; https://github.com/openssl/openssl/commit/133138569f37d149ed1d7641fe8c75a93fded445 On Mon, Mar 14, 2016 at 12:05 PM, Ron Hawkins wrote:

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Luca Toscano
Hello! 2016-03-19 11:23 GMT+01:00 Roparzh Hemon : > > Plus, I don't want my little experiments to > interfere with built-in defaults on my system). > > Would it be ok to configure the "new" httpd to listen on port 8080? You could keep both and this problem would disappear :) Luca

Re: [users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread o haya
I don't know the answer to your question, but if there's not something that is in 2.4.x that you need, and if 2.2.31 does what you need then maybe the quickest way to get things working is 2.2.31? Just a suggestion... On Fri, 3/18/16, Roparzh Hemon

[users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread Roparzh Hemon
I get the following error message : $ bin/apachectl -k start dyld: Library not loaded: /lib/libaprutil-1.0.dylib Referenced from: /bin/httpd Reason: Incompatible library version: httpd requires version 6.0.0 or later, but libaprutil-1.0.dylib provides version 4.0.0 ../bin/apachectl: line 79: 9

Re: [users@httpd] Address already in use in Apache on Mac

2016-03-19 Thread Roparzh Hemon
"Would it be ok to configure the "new" httpd to listen on port 8080? " Looks like a nice idea ! To this end, I edited "Listen 80" to "Listen 8080" in httpd.conf, but then I got a more laconic and surprising behavior : $ sudo bin/apachectl -k restart httpd not running, trying to start $ sudo bin

[users@httpd] ProxyPass ! directive seems to have no effect

2016-03-19 Thread Matthew Broadhead
I am in the middle of migrating a server and my old virtual host config which worked fine was like this |ProxyPass /images ! ProxyPass / ajp://domain.tld:8010/ nocanon | It passes ok to Tomcat but the ! directive is being ignored. There are no errors thrown. What might be causing this?

Re: [users@httpd] Apache won't start after install on Unix-like system

2016-03-19 Thread Roparzh Hemon
Thanks for your feedback. The question in the StackExchange link you gave indeed has an error message resembling mine closely. But I didn't use homebrew and the answers in the StackExchange link do not apply to my case. Would you mind telling me what combination of words you tried in Google ? So I

[users@httpd] Club two or more httpd status page in a single page

2016-03-19 Thread Manish Rangari
Hello, I have 4 apache servers with each having separate status page. I can see the status page by opening 4 different web page. Now I need a solution to open this all the status pages in a single web page. Does anyone know how to implement this? Thanks, This email has been sent from a virus-fr