<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[运维进行时]]></title> 
<link>https://www.liuts.com/index.php</link> 
<description><![CDATA[互联网运维与架构]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[运维进行时]]></copyright>
<item>
<link>https://www.liuts.com/post/216/</link>
<title><![CDATA[Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>刘天斯 &lt;liutiansi@gmail.com&gt;</author>
<category><![CDATA[Linux]]></category>
<pubDate>Wed, 13 Oct 2010 12:42:30 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp; 之前一直使用Nginx+Fastcgi来搭建python web服务器，本文介绍Nginx+UWSGI组合来实现。uWSGI 是一个快速的、纯C语言开发的、自维护的、对开发者友好的WSGI服务器，旨在提供专业的 Python web应用发布和开发。它更符合python web的标准协议，速度要比Fastcgi要快、性能更加稳定。<br/><strong>一、安装平台</strong><br/>1、安装pcre<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>cd /home<br/>mkdir -p /home/install/nginx && cd /home/install/nginx<br/>wget http://ftp.exim.llorien.org/pcre/pcre-8.00.tar.gz<br/>tar -zxvf pcre-8.00.tar.gz<br/>cd pcre-8.00<br/>./configure<br/>make && make install<br/>cd ..<br/></div></div><br/>2、安装Nginx<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>wget http://nginx.org/download/nginx-0.8.50.tar.gz<br/>tar -zxvf nginx-0.8.50.tar.gz<br/>cd nginx-0.8.50/<br/>./configure --user=nobody --group=nobody --prefix=/usr/local/nginx --with-http_stub_status_module --with-cc-opt='-O3' --with-cpu-opt=opteron<br/>make && make install<br/>cd ..<br/></div></div><br/>3、安装python&Mysql-python<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>wget http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz<br/>tar -zxvf Python-2.5.1.tgz<br/>cd Python-2.5.1<br/>./configure && make && make install<br/>echo "export PATH=&#92;$PATH:/usr/local/bin" >> /etc/profile<br/>source /etc/profile<br/></div></div><br/>4、安装MySql-python<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>cd ../<br/>wget http://downloads.sourceforge.net/project/mysql-python/mysql-python/1.2.2/MySQL-python-1.2.2.tar.gz?r=&ts=1285248455&use_mirror=nchc<br/>cd MySQL-python-1.2.2<br/>python setup.py install<br/></div></div><br/>5、安装Django<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>wget http://www.djangoproject.com/download/1.2.3/tarball/<br/>tar -zxvf Django-1.2.3.tar.gz<br/>cd Django-1.2.3<br/>python setup.py install<br/>cd ..<br/></div></div><br/>6、安装uWSGI<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>wget http://projects.unbit.it/downloads/uwsgi-0.9.6.2.tar.gz<br/>tar -zxvf uwsgi-0.9.6.2.tar.gz<br/>cd uwsgi-0.9.6.2<br/>make<br/>cp uwsgi /usr/bin<br/></div></div><br/><strong>二、平台配置</strong><br/>1、平台环境说明<br/>&nbsp;&nbsp;1.1、项目位置：/opt/www/Purgesys<br/>&nbsp;&nbsp; 创建项目方法：<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>cd /opt/www<br/>django-admin.py startproject Purgesys<br/></div></div><br/>&nbsp;&nbsp;1.2、查看项目(出现以下文件结构说明项目已创建成功)<br/>&nbsp;&nbsp;#tree Purgesys<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>Purgesys<br/>&#124;-- __init__.py<br/>&#124;-- manage.py<br/>&#124;-- settings.py<br/>`-- urls.py<br/></div></div><br/>2、Nginx相关配置<br/>#cd /usr/local/nginx/conf<br/>#vi django_uwsgi.conf<br/><textarea name="code" class="c" rows="15" cols="100">
# Django project
server &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;listen&nbsp;&nbsp;80;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;server_name purgesys.domain.com;


&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;location / &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;uwsgi_pass&nbsp;&nbsp; 127.0.0.1:9000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include&nbsp;&nbsp;&nbsp;&nbsp; uwsgi_params;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;access_log&nbsp;&nbsp;off;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;location ^~ /static &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;root&nbsp;&nbsp; /opt/www/Purgesys;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;location ^~ /admin/ &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;uwsgi_pass&nbsp;&nbsp; 127.0.0.1:9000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include&nbsp;&nbsp;uwsgi_params;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;access_log&nbsp;&nbsp; off;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;location ~* ^.+&#92;.(mpg&#124;avi&#124;mp3&#124;swf&#124;zip&#124;tgz&#124;gz&#124;rar&#124;bz2&#124;doc&#124;xls&#124;exe&#124;ppt&#124;txt&#124;tar&#124;mid&#124;midi&#124;wav&#124;rtf&#124;mpeg)$ &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;root&nbsp;&nbsp; /opt/www/Purgesys/static;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;access_log&nbsp;&nbsp; off;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;

&#125;
</textarea><br/>*Nginx-0.8.50默认已添加uwsgi输出头支持<br/><span style="color: #FF0000;">include uwsgi_params;</span><br/><br/>#vi nginx.conf<br/>追加子配置文件django_uwsgi.conf<br/><textarea name="code" class="c" rows="15" cols="100">
http&#123;
........
include django_uwsgi.conf;
&#125;
</textarea><br/>3、UWSGI配置<br/>#mkdir -p /home/uwsgi;cd /home/uwsgi<br/>#mkdir -p /opt/www/logs<br/>#echo "" > /opt/www/logs/django.log<br/>#vi uwsgi.xml<br/><textarea name="code" class="xml" rows="15" cols="100">
<uwsgi>
&nbsp;&nbsp;<socket>127.0.0.1:9000</socket>
&nbsp;&nbsp;<listen>200</listen>
&nbsp;&nbsp;<master>true</master>
&nbsp;&nbsp;<pidfile>/usr/local/nginx/uwsgi.pid</pidfile>
&nbsp;&nbsp;<processes>8</processes>
&nbsp;&nbsp;<pythonpath>/opt/www/Purgesys</pythonpath>
&nbsp;&nbsp;<pythonpath>/opt/www/</pythonpath>
&nbsp;&nbsp;<module>django_wsgi</module>
&nbsp;&nbsp;<profiler>true</profiler>
&nbsp;&nbsp;<memory-report>true</memory-report>
&nbsp;&nbsp;<enable-threads>true</enable-threads>
&nbsp;&nbsp;<logdate>true</logdate>
&nbsp;&nbsp;<limit-as>6048</limit-as>
&nbsp;&nbsp;<daemonize>/opt/www/logs/django.log</daemonize>
</uwsgi>
</textarea><br/>4、创建应用模块<br/>cd /opt/www/Purgesys<br/>vi django_wsgi.py<br/><textarea name="code" class="python" rows="15" cols="100">
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'Purgesys.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
</textarea><br/>5、启动服务<br/>#/usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>#/usr/local/nginx/sbin/nginx<br/><br/>6、查看进程<br/>#[liuts@webserver nginx]# ps -ef&#124;grep uwsgi&#124;grep -v grep<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21652&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21653 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21654 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21655 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21656 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21657 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21658 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21659 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/>root&nbsp;&nbsp;&nbsp;&nbsp; 21660 21652&nbsp;&nbsp;0 17:12 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;00:00:00 /usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml<br/></div></div><br/>7、监听端口<br/>#[liuts@webserver nginx]# netstat -an&#124;grep 9000<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>tcp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;127.0.0.1:9000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.0.0.0:*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LISTEN<br/></div></div><br/>8、访问测试<br/>输入http://serverip/<br/><a href="https://www.liuts.com/attachment.php?fid=216" target="_blank"><img src="https://www.liuts.com/attachment.php?fid=216" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>大功告成！<br/><br/>*附uwsgi启动脚本<br/>#cd /home/uwsgi<br/>#vi uwsgiserver.sh<br/><textarea name="code" class="c" rows="15" cols="100">
#!/bin/bash
if [ $1 = start ];then
&nbsp;&nbsp;psid=`ps aux&#124;grep "uwsgi"&#124;grep -v "grep"&#124;wc -l`
&nbsp;&nbsp;if [ $psid -gt 2 ];then
&nbsp;&nbsp;&nbsp;&nbsp;echo "uwsgi is running!"
&nbsp;&nbsp;&nbsp;&nbsp;exit 0
&nbsp;&nbsp;else
&nbsp;&nbsp;&nbsp;&nbsp;/usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml
&nbsp;&nbsp;fi
&nbsp;&nbsp;echo "Start uwsgi service [OK]"
elif [ $1 = stop ];then
&nbsp;&nbsp;killall -9 uwsgi
&nbsp;&nbsp;echo "Stop uwsgi service [OK]"
elif [ $1 = restart ];then
&nbsp;&nbsp;killall -9 uwsgi
&nbsp;&nbsp;/usr/bin/uwsgi -x /home/uwsgi/uwsgi.xml
&nbsp;&nbsp;echo "Restart uwsgi service [OK]"
else
&nbsp;&nbsp;echo "Usages: sh uwsgiserver.sh [start&#124;stop&#124;restart]"
fi
</textarea><br/>#sh uwsgiserver.sh start<br/>[uWSGI] parsing config file /home/uwsgi/uwsgi.xml<br/>Start uwsgi service [<span style="color: #32CD32;">OK</span>]<br/><br/>如大家有什么疑问或感兴趣的话题可以通过weibo与我交流：<a href="http://t.qq.com/yorkoliu" target="_blank">http://t.qq.com/yorkoliu</a><br/>Tags - <a href="https://www.liuts.com/tags/python/" rel="tag">python</a> , <a href="https://www.liuts.com/tags/uwsgi/" rel="tag">uwsgi</a> , <a href="https://www.liuts.com/tags/nginx/" rel="tag">nginx</a> , <a href="https://www.liuts.com/tags/django/" rel="tag">django</a>
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment387</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>fh.cn &lt;lr@isadba.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 14 Oct 2010 05:48:56 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment387</guid> 
<description>
<![CDATA[ 
	来拜访天师的新文章，很不错，不过我们没用python
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment720</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>scoke &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 17 May 2011 08:33:51 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment720</guid> 
<description>
<![CDATA[ 
	你好，安装你的教程配置了2遍，还有也参考了其他的教程，始终不能访问，访问的时候是502 Bad Gateway<br/>错误日志是<br/>ue May 17 16:29:43 2011 - Respawned uWSGI worker (new pid: 18487)<br/>Tue May 17 16:29:43 2011 - DAMN ! process 18477 died :( trying respawn ...<br/>Tue May 17 16:29:43 2011 - worker respawning too fast !!! i have to sleep a bit...<br/>Tue May 17 16:29:45 2011 - Respawned uWSGI worker (new pid: 18488)<br/>Tue May 17 16:29:45 2011 - DAMN ! process 18478 died :( trying respawn ...<br/>Tue May 17 16:29:45 2011 - worker respawning too fast !!! i have to sleep a bit...<br/>Tue May 17 16:29:47 2011 - Respawned uWSGI worker (new pid: 18489)<br/>Tue May 17 16:29:47 2011 - DAMN ! process 18484 died :( trying respawn ...<br/>Tue May 17 16:29:47 2011 - worker respawning too fast !!! i have to sleep a bit...<br/>Tue May 17 16:29:49 2011 - Respawned uWSGI worker (new pid: 18490)<br/>帮忙看一下，谢谢
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment722</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>scoke &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 17 May 2011 09:25:27 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment722</guid> 
<description>
<![CDATA[ 
	不好意思，现在错误变成了<br/>{address space usage: 120582144 bytes/114MB} {rss usage: 3883008 bytes/3MB} [pid: 18721&#124;app: -1&#124;req: -1/1] 192.168.216.1 () {42 vars in 677 bytes} [Tue May 17 17:14:03 2011] GET / =&gt; generated 46 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 63 bytes (0 switches on core 0)<br/>发现修改了vi django_wsgi.py这个文件，之前写错
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment732</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>scoke &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 19 May 2011 08:21:29 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment732</guid> 
<description>
<![CDATA[ 
	问题已经解决了，是启动的配置文件uwsgi.xml<br/>不正常内存限制导致的
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment842</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>33333333333 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Sep 2011 07:20:13 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment842</guid> 
<description>
<![CDATA[ 
	invalid request block size:&nbsp;&nbsp;报这个错误是什么原因 呀
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment913</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>python初学 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 14 Sep 2011 13:15:17 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment913</guid> 
<description>
<![CDATA[ 
	补充一点：Nginx报502，但是uwsgi正常启动端口9000也正常监听。有可能是应用程序有错误导致。
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment1045</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>junior sa &lt;zhouzhenshi@cn-acg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 15 Nov 2011 15:55:10 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment1045</guid> 
<description>
<![CDATA[ 
	我的nginx+uwsgi+django遇到大header的request，经常出现502，uwsgi报的是 invalid request header size,何解我的uwsgi配置为[uwsgi]socket = :8010master = truemodule = django_wsgiprocesses = 8home = /path/to/virtualenvharakiri = 20daemonize = /path/to/uwsgi.logpidfile = /path/to/uwsgi.pidpythonpath = /path/to/projectpythonpath = /path/to/uwsgibuffer-size = 32768reload-mercy = 8max-requests = 5000socket-timeout = 4
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment1303</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>Selboo &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 06 Feb 2012 04:02:39 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment1303</guid> 
<description>
<![CDATA[ 
	MySQL-python 安装错误如下<br/>from setuptools import setup ImportError:<br/><br/>先安装<br/>python ez_setup.py<br/><br/>在安装<br/>python setup.py install<br/><br/>贴一下,方便其他兄弟了
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment2490</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>fcds &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 30 Oct 2014 10:32:42 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment2490</guid> 
<description>
<![CDATA[ 
	failed to open python file Purgesys/django_wsgi我看LOG出现这个问题。。。使用的是官网推荐的 .ini配置文件
]]>
</description>
</item><item>
<link>https://www.liuts.com/post/216/#blogcomment2620</link>
<title><![CDATA[[评论] Centos5.4+Nginx-0.8.50+UWSGI-0.9.6.2+Django-1.2.3搭建高性能WEB服务器[原创]]]></title> 
<author>balabalaaaa &lt;bger@21cnc.om&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 21 Oct 2015 02:37:12 +0000</pubDate> 
<guid>https://www.liuts.com/post/216/#blogcomment2620</guid> 
<description>
<![CDATA[ 
	细节没讲清楚.菜鸟按这流程，配置不出来好吧！
]]>
</description>
</item>
</channel>
</rss>