Skip to content Skip to sidebar Skip to footer

Where Can I Find Apxs On Amazon Linux?

I'm trying to get started with an AWS website, and used the free tier Amazon Linux installation. I installed python3.3 from source, but the wsgi it comes with is for python2.6 so I

Solution 1:

First of all if you are using Amazon Linux or any RPM based linux distro, you should use "httpd" rather than "apache2". Apache use in Debian family.

I think you can resolve this issue by installing httpd-devel package. Try yum search httpd-devel and choose required version and then do yum install httpd-devel <package version>

Sometime just firing yum install httpd-devel can do the job.

Post a Comment for "Where Can I Find Apxs On Amazon Linux?"