Instale APC RedHat

16

Estoy tratando de instalar APC en redhat, así que hice:

pecl install apc

Le dije que a:

Use apxs to set compile flags (if using APC with Apache)? [yes]:

y entiendo esto:

checking for re2c... no
configure: WARNING: You will need re2c 0.9.11 or later if you want to \
regenerate PHP parsers.

y

checking whether apc needs to get compiler flags from apxs...

Sorry, I was not able to successfully run APXS.  Possible reasons:

1.  Perl is not installed;
2.  Apache was not compiled with DSO support (--enable-module=so);
3.  'apxs' is not in your path.  Try to use --with-apxs=/path/to/apxs
The output of apxs follows
/tmp/tmpJQuZdD/APC-3.0.16/configure: line 3846: apxs: command not found
configure: error: Aborting
ERROR: `/tmp/tmpJQuZdD/APC-3.0.16/configure --with-apxs' failed

¿Cual podría ser el problema? Gracias

zackaryka
fuente
3
Esto está fuera de tema para StackOverflow. Pertenece a ServerFault en su lugar. Consulte las preguntas frecuentes: stackoverflow.com/faq
Polynomial
La pista es yum whatprovides *bin/apxs.
quanta

Respuestas:

20

Olvidaste este paquete:

sudo yum install httpd-devel.i386

o

sudo yum install httpd-devel

También puede necesitar:

apt-get install apache2-threaded-dev

Una vez que esté completo, intente nuevamente y al final reinicie apache:

sudo apachectl -k graceful
Libro de zeus
fuente