Installieren Sie APC RedHat


16

Ich versuche, Apc auf RedHat zu installieren, also habe ich Folgendes getan:

pecl install apc

Ich sagte ja zu:

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

und ich bekomme das:

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

und

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

was könnte das problem sein Vielen Dank


3
Dies ist für StackOverflow kein Thema. Es gehört stattdessen zu ServerFault. Bitte lesen
Polynomial

Der Hinweis ist yum whatprovides *bin/apxs.
Quanten

Antworten:


20

Sie haben dieses Paket vergessen:

sudo yum install httpd-devel.i386

oder

sudo yum install httpd-devel

Möglicherweise benötigen Sie auch:

apt-get install apache2-threaded-dev

Wenn es fertig ist, versuche es erneut und starte Apache am Ende neu:

sudo apachectl -k graceful
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.