Installa APC RedHat


16

sto cercando di installare apc su redhat, quindi ho fatto:

pecl install apc

ho detto di a:

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

e ottengo questo:

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

e

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

Quale potrebbe essere il problema? Grazie


3
Questo è fuori tema per StackOverflow. Appartiene invece a ServerFault. Consulta le FAQ: stackoverflow.com/faq
Polynomial

Il suggerimento è yum whatprovides *bin/apxs.
quanta,

Risposte:


20

Hai dimenticato questo pacchetto:

sudo yum install httpd-devel.i386

o

sudo yum install httpd-devel

Potresti anche aver bisogno di:

apt-get install apache2-threaded-dev

Una volta completato, riprova e alla fine riavvia apache:

sudo apachectl -k graceful
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.