web-dev-qa-db-ja.com

Apachemod_wsgiインストールエラー

CentOS 6.7を実行していて、mod_wsgiをインストールしようとしています( https://code.google.com/p/modwsgi/

通常、私は次のことを行います。

yum install mod_wsgi

しかし、Python 2.7(CentOSのデフォルトPython 2.6バージョン)ではなく)でコンパイルされることを確認する必要があるため、リポジトリをダウンロードすることにしました(- https://github.com/GrahamDumpleton/mod_wsgi/releases )そしてそれが私のシナリオ用に構成されていることを確認してください。

インストールについては、オフィスガイドに従いました: https://code.google.com/p/modwsgi/wiki/QuickInstallationGuide

唯一の違いは、Pythonバージョン:

./configure --with-python=/usr/local/bin/python2.7

上記は戻ります:

checking for apxs2... no
checking for apxs... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for prctl... yes
checking Apache version... ./configure: line 2765: apxs: command not found
./configure: line 2765: apxs: command not found
./configure: line 2766: apxs: command not found
./configure: line 2769: /: is a directory

./configure: line 2964: apxs: command not found
configure: creating ./config.status
config.status: creating Makefile

Makeリターンを実行すると:

apxs -c -I/usr/local/include/python2.7 -DNDEBUG  -Wc,-g -Wc,-O2  src/server/mod_wsgi.c src/server/wsgi_*.c -L/usr/local/lib -L/usr/local/lib/python2.7/config  -lpython2.7 -lpthread -ldl  -lutil -lm
/bin/sh: apxs: command not found
make: *** [src/server/mod_wsgi.la] Error 127

どんな助けでもいただければ幸いです!

3
Jorg Ancrath

Apache開発ツールがありませんでした:

yum install httpd-devel

2
Jorg Ancrath