You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Infocom Admin <cf...@yahoo.com> on 2008/07/10 21:00:31 UTC

[users@httpd] problem installing apache (resending)

Hi
     I am trying to upgrade apache to version 2.2.9 on Red Hat 
2.6.9-67.0.15.ELsmp. When I run the configure script with any option,
it gives a warning as below.

"configure: WARNING: Unrecognized options: --disable-actions, --disable-cgi"

    Though it gives warnings, it compiles smoothly when i run "make" command.

    But again , when I run "make install" command, it quits saying:

Making install in support
make[1]: Entering directory `/home/sam/httpd-2.2.9/support'
make[2]: Entering directory `/home/sam/httpd-2.2.9/support'
make[2]: Leaving directory `/home/sam/httpd-2.2.9/support'
cp: preserving permissions for `/usr/local/apache2/modules/httpd.exp': Operation not supported
make[1]: *** [install] Error 1
make[1]: Leaving directory
 `/home/sam/httpd-2.2.9/support'
make: *** [install-recursive] Error 1

        Even though I remove the previous file httpd.exp and run the command again, it still says the same...

       Do you have any ideas about this issue ?

Thank you

(posting again as previous one didn't appear in the list)
      


      

Re: [users@httpd] problem installing apache

Posted by Infocom Admin <cf...@yahoo.com>.
nopes... it doesn't work with setenforce 0 either..
 


--- On Sat, 7/12/08, Graeme Fowler <gr...@graemef.net> wrote:

From: Graeme Fowler <gr...@graemef.net>
Subject: Re: [users@httpd] problem installing apache (resending)
To: users@httpd.apache.org
Date: Saturday, July 12, 2008, 8:53 AM

On Fri, 2008-07-11 at 18:27 -0700, Infocom Admin wrote:
> Yes it has write pemission too...

SELinux. It's probably in enforcing mode (rather than permissive) and is
preventing you doing things you believe you can.

Try "setenforce 0" as root, and run make install again. Then to turn
SELinux back into enforcing mode, "setenforce 1".

Of course, this assumes you have created an SELinux policy to allow you
to modify and execute things in /usr/local...

Graeme


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


      

Re: [users@httpd] problem installing apache (resending)

Posted by Graeme Fowler <gr...@graemef.net>.
On Fri, 2008-07-11 at 18:27 -0700, Infocom Admin wrote:
> Yes it has write pemission too...

SELinux. It's probably in enforcing mode (rather than permissive) and is
preventing you doing things you believe you can.

Try "setenforce 0" as root, and run make install again. Then to turn
SELinux back into enforcing mode, "setenforce 1".

Of course, this assumes you have created an SELinux policy to allow you
to modify and execute things in /usr/local...

Graeme


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] problem installing apache (resending)

Posted by Infocom Admin <cf...@yahoo.com>.
Yes it has write pemission too...
 


--- On Thu, 7/10/08, Tom Donovan <do...@bellatlantic.net> wrote:

From: Tom Donovan <do...@bellatlantic.net>
Subject: Re: [users@httpd] problem installing apache (resending)
To: users@httpd.apache.org
Date: Thursday, July 10, 2008, 9:20 PM

Infocom Admin wrote:
> Hi
>      I am trying to upgrade apache to version 2.2.9 on Red Hat  
> 2.6.9-67.0.15.ELsmp. When I run the configure script with any option, it 
> gives a warning as below.
> 
> "configure: WARNING: Unrecognized options: --disable-actions,
--disable-cgi"
> 
>     Though it gives warnings, it compiles smoothly when i run
"make" 
> command.
> 

This one is benign.  Apache passes all your options to the apr, apr-util, and
httpd configures.

Prior to autoconf 2.62 any unrecognized options were silently ignored, and
Apache counted on this 
behavior.  Starting with 2.62 each configure complains about the options it
doesn't understand.

See http://www.gnu.org/software/autoconf/manual/html_node/Option-Checking.html
and https://issues.apache.org/bugzilla/show_bug.cgi?id=45221

You can quiet these messages with the --disable-option-checking switch.

>     But again , when I run "make install" command, it quits
saying:
> 
> Making install in support
> make[1]: Entering directory `/home/sam/httpd-2.2.9/support'
> make[2]: Entering directory `/home/sam/httpd-2.2.9/support'
> make[2]: Leaving directory `/home/sam/httpd-2.2.9/support'
> cp: preserving permissions for `/usr/local/apache2/modules/httpd.exp':

> Operation not supported
> make[1]: *** [install] Error 1
> make[1]: Leaving directory `/home/sam/httpd-2.2.9/support'
> make: *** [install-recursive] Error 1
> 
>         Even though I remove the previous file httpd.exp and run the 
> command again, it still says the same...
> 
>        Do you have any ideas about this issue ?
> 

Definitely a separate issue.   Do you have r+w access to /usr/local/... ?

-tom-

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


      

Re: [users@httpd] problem installing apache (resending)

Posted by Tom Donovan <do...@bellatlantic.net>.
Infocom Admin wrote:
> Hi
>      I am trying to upgrade apache to version 2.2.9 on Red Hat  
> 2.6.9-67.0.15.ELsmp. When I run the configure script with any option, it 
> gives a warning as below.
> 
> "configure: WARNING: Unrecognized options: --disable-actions, --disable-cgi"
> 
>     Though it gives warnings, it compiles smoothly when i run "make" 
> command.
> 

This one is benign.  Apache passes all your options to the apr, apr-util, and httpd configures.

Prior to autoconf 2.62 any unrecognized options were silently ignored, and Apache counted on this 
behavior.  Starting with 2.62 each configure complains about the options it doesn't understand.

See http://www.gnu.org/software/autoconf/manual/html_node/Option-Checking.html
and https://issues.apache.org/bugzilla/show_bug.cgi?id=45221

You can quiet these messages with the --disable-option-checking switch.

>     But again , when I run "make install" command, it quits saying:
> 
> Making install in support
> make[1]: Entering directory `/home/sam/httpd-2.2.9/support'
> make[2]: Entering directory `/home/sam/httpd-2.2.9/support'
> make[2]: Leaving directory `/home/sam/httpd-2.2.9/support'
> cp: preserving permissions for `/usr/local/apache2/modules/httpd.exp': 
> Operation not supported
> make[1]: *** [install] Error 1
> make[1]: Leaving directory `/home/sam/httpd-2.2.9/support'
> make: *** [install-recursive] Error 1
> 
>         Even though I remove the previous file httpd.exp and run the 
> command again, it still says the same...
> 
>        Do you have any ideas about this issue ?
> 

Definitely a separate issue.   Do you have r+w access to /usr/local/... ?

-tom-

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] problem installing apache (resending)

Posted by Infocom Admin <cf...@yahoo.com>.
Yes i ran it as root...

--- On Fri, 7/11/08, Krist van Besien <kr...@gmail.com> wrote:

From: Krist van Besien <kr...@gmail.com>
Subject: Re: [users@httpd] problem installing apache (resending)
To: users@httpd.apache.org, cfmx07@yahoo.com
Date: Friday, July 11, 2008, 4:12 AM

On Thu, Jul 10, 2008 at 21:00, Infocom Admin <cf...@yahoo.com> wrote:

>     But again , when I run "make install" command, it quits
saying:

Have your run "make install" as root?

Krist

-- 
krist.vanbesien@gmail.com
krist@vanbesien.org
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?


      

Re: [users@httpd] problem installing apache (resending)

Posted by Krist van Besien <kr...@gmail.com>.
On Thu, Jul 10, 2008 at 21:00, Infocom Admin <cf...@yahoo.com> wrote:

>     But again , when I run "make install" command, it quits saying:

Have your run "make install" as root?

Krist

-- 
krist.vanbesien@gmail.com
krist@vanbesien.org
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org