Zainstaluj APC RedHat

16

próbuję zainstalować apc na redhat, więc zrobiłem:

pecl install apc

powiedziałem tak :

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

i dostaję to:

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

i

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

jaki może być problem? Dzięki

zackaryka
źródło
3
To nie jest temat dla StackOverflow. Zamiast tego należy do ServerFault. Zobacz często zadawane pytania: stackoverflow.com/faq
Wielomian
Wskazówka jest taka yum whatprovides *bin/apxs.
kwanty

Odpowiedzi:

20

Zapomniałeś tego pakietu:

sudo yum install httpd-devel.i386

lub

sudo yum install httpd-devel

Możesz także potrzebować:

apt-get install apache2-threaded-dev

Po zakończeniu spróbuj ponownie, a na końcu uruchom ponownie apache:

sudo apachectl -k graceful
Księga Zeusa
źródło