设为首页 收藏本站
查看: 847|回复: 0

[经验分享] Centos5.5搭建nginx + python + django +memcached+ mysql +fastcgi 环境

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2015-9-1 09:59:27 | 显示全部楼层 |阅读模式
  

  Django是一个开放源代码的Web应用框架,由Python写成,它最初是被开发来用于管理劳伦斯出版集团旗下的一些以新闻内容为主的网站的。 python+django也是web开发者最受欢迎的框架.今天记录下整个搭建开发环境的过程.(说明下环境的系统为 centos 5.5)
一:更新yum仓库(目前这个yum源是最快的)
[iyunv@filerserver python]#cd /etc/yum.repos.d
[iyunv@filerserver python]#mv CentOS-Base.repo CentOS-Base.repo.save
[iyunv@filerserver python]#wget http://centos.ustc.edu.cn/CentOS-Base.repo.5
[iyunv@filerserver python]#mv CentOS-Base.repo.5 CentOS-Base.repo
  二:安装部分的开发包和更新
[iyunv@filerserver python]#yum check-update
[iyunv@filerserver python]#yum update
[iyunv@filerserver python]#yum install ntp iptraf sysstat screen subversion wget bzip2 nfs-utils vim-common
[iyunv@filerserver python]#yum install make gcc gcc-c++ libjpeg-devel libpng-devel zlib-devel tcl-devel freetype-devel libevent-devel openssl-devel db4-devel curl-devel pcre-devel ncurses-devel readline-devel sqlite-devel
三:安装Python
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/Python-2.5.4.tar.bz2
[iyunv@filerserver python]#tar xjvf Python-2.5.4.tar.bz2
[iyunv@filerserver python]#cd Python-2.5.4/
[iyunv@filerserver python]#./configure --enable-unicode=ucs4
[iyunv@filerserver python]#make
[iyunv@filerserver python]#make install
四:安装MySQL客户端
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/mysql-5.0.45.tar.gz
[iyunv@filerserver python]#tar zxvf mysql-5.0.45.tar.gz
[iyunv@filerserver python]#cd mysql-5.0.45
[iyunv@filerserver python]#CFLAGS="-O3" CXX=gcc CXXFLAGS="-O3 -felide-constructors \
-fno-exceptions -fno-rtti" ./configure \
--prefix=/usr/local/mysql --enable-assembler \
--with-charset=utf8 \
--with-extra-charsets=gbk,gb2312,latin1 \
--without-debug \
--with-client-ldflags=-all-static \
--enable-thread-safe-client \
--without-server
[iyunv@filerserver python]#make
[iyunv@filerserver python]#make install
[iyunv@filerserver python]#echo "PATH=/usr/local/mysql/bin:\$PATH" >> /etc/profile
[iyunv@filerserver python]#echo "export PATH" >> /etc/profile
[iyunv@filerserver python]#echo "/usr/local/mysql/lib/mysql" > /etc/ld.so.conf.d/mysql.conf
[iyunv@filerserver python]#ldconfig
五:安装memcached
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/memcached-1.2.6.tar.gz
[iyunv@filerserver python]#tar xzvf memcached-1.2.6.tar.gz
[iyunv@filerserver python]#cd memcached-1.2.6/
[iyunv@filerserver python]#./configure --prefix=/usr/local/memcached --enable-threads
[iyunv@filerserver python]#make
[iyunv@filerserver python]#make install
六:安装python setuptools
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/setuptools-0.6c9.tar.gz
[iyunv@filerserver python]#tar xzvf setuptools-0.6c9.tar.gz
[iyunv@filerserver python]#cd setuptools-0.6c9
[iyunv@filerserver python]#python setup.py install
七:安装django
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#svn co http://code.djangoproject.com/svn/django/trunk django-trunk #直接重django的SVN拿最新稳定安装包
[iyunv@filerserver python]#cd django-trunk
[iyunv@filerserver python]#python setup.py install
八:安装sqlalchemy
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#svn co http://svn.sqlalchemy.org/sqlalchemy/branches/rel_0_4
[iyunv@filerserver python]#cd sqlalchemy-0.4
[iyunv@filerserver python]#python setup.py install
九:安装MySQLdb
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/MySQL-python-1.2.2.tar.gz
[iyunv@filerserver python]#tar xzvf MySQL-python-1.2.2.tar.gz
[iyunv@filerserver python]#cd MySQL-python-1.2.2
[iyunv@filerserver python]#python setup.py install
十:安装Twisted
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/Twisted-8.2.0.tar.bz2
[iyunv@filerserver python]#tar xjvf Twisted-8.2.0.tar.bz2
[iyunv@filerserver python]#cd Twisted-8.2.0/
[iyunv@filerserver python]#python setup.py install
十一:安装python-memcached
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/python-memcached-1.44.tar.gz
[iyunv@filerserver python]#tar xzvf python-memcached-1.44.tar.gz
[iyunv@filerserver python]#cd python-memcached-1.44
[iyunv@filerserver python]#python setup.py install
十二:安装PIL
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/Imaging-1.1.6.tar.gz
[iyunv@filerserver python]#tar xzvf Imaging-1.1.6.tar.gz
[iyunv@filerserver python]#cd Imaging-1.1.6
[iyunv@filerserver python]#python setup.py install
十三:安装flup
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/flup-1.0.1.tar.gz
[iyunv@filerserver python]#tar xzvf flup-1.0.1.tar.gz
[iyunv@filerserver python]#cd flup-1.0.1
[iyunv@filerserver python]#python setup.py install
十四:安装simplejson
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/simplejson-2.0.9.tar.gz
[iyunv@filerserver python]#tar xzvf simplejson-2.0.9.tar.gz
[iyunv@filerserver python]#cd simplejson-2.0.9
[iyunv@filerserver python]#python setup.py install
十五:安装nginx
[iyunv@filerserver python]#cd /usr/local/src
[iyunv@filerserver python]#wget http://www.dbasky.net/tool/python/nginx-0.7.51.tar.gz
[iyunv@filerserver python]#tar xzvf nginx-0.7.51.tar.gz
[iyunv@filerserver python]#cd nginx-0.7.51
[iyunv@filerserver python]#./configure --prefix=/usr/local/nginx \
--with-md5=/usr/lib \
--with-sha1=/usr/lib \
--with-http_ssl_module \
--with-http_stub_status_module \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module \
--with-http_realip_module
[iyunv@filerserver python]#make
[iyunv@filerserver python]#make install

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-108239-1-1.html 上篇帖子: spy memcached spring demo 下篇帖子: Memcached source code analysis (threading model)--reference
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表