Linux部署python django程序-apache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux部署python django程序-apache相关的知识,希望对你有一定的参考价值。

1、安装Apache

先卸载自带的httpd

rpm -e httpd --nodeps

在网上下载四个文件

1、apr-1.4.6.tar.gz

2、apr-util-1.5.1.tar.gz

3、pcre-8.32.tar.gz

4、httpd-2.4.3.tar.gz

下载地址:

http://pan.baidu.com/share/link?shareid=169366&uk=1829018343

分别安装这四个包root用户

安装apr-1.4.6.tar.gz

tar xzf apr-1.4.6.tar.gz

./configure -prefix=/usr/local/apr

make

make install

安装apr-util-1.5.1.tar.gz

tar xzf apr-util-1.5.1.tar.gz

./configure -with-apr=/usr/local/apr

make

make install

 

安装c++(linux下安装安装pcre-8.32前必须安装)

yum install -y gcc gcc-c++

 

 

安装pcre

tar xzf pcre-8.32.tar.gz

./configure -prefix=/usr/local/pcre

make

make install

 

安装apache

tar xzf httpd-2.4.3.tar.gz

./configure -prefix=/usr/local/apache --with-apr=/usr/local/apr/ --with-pcre=/usr/local/pcre/

make

make install

安装完成后到

/usr/local/apache/ conf/路径下的httpd.conf添加配置

ServerName localhost:80

 

检查一下apache是否正确安装

到/usr/local/apache/bin/路径下

./apachectl

然后登录127.0.0.1

 

 

正常情况:

 技术分享

以上是关于Linux部署python django程序-apache的主要内容,如果未能解决你的问题,请参考以下文章

linux环境部署python3+django

Linux 下部署Django项目

Linux如何去部署Django (Nginx + uwsgi + Python3 + Django)

Django项目发布 环境部署(中)

Nginx+uWSGI+Django+Python在Linux上的部署

部署 django 应用程序以加快加载速度的最佳方式