Centos搭建Python+Nginx+Tornado+Mysql環境

來源:互聯網
上載者:User

標籤:http   os   io   strong   檔案   for   ar   art   cti   

下面我將介紹在UNIX(LINUX、MAC下的配置方法其本一致)下如何快速搭建其運行環境:

1、安裝Python

wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz tar xvfz Python-2.7.5.tgzcd Python-2.7.5 ./configuremakesudo make install

2、安裝Python的包管理工具setuptools、pip和打包工具distribute

wget http://peak.telecommunity.com/dist/ez_setup.py python ez_setup.pywget http://python-distribute.org/distribute_setup.py python distribute_setup.pywget https://github.com/pypa/pip/raw/master/contrib/get-pip.py python get-pip.py

3、安裝Readline

sudo pip install readline

4、安裝Mysql

#安裝cmake wget http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gztar xvfz cmake-2.8.8.tar.gzcd cmake-2.8.8./configuremakesudo make install #安裝mysql wget http://cdn.mysql.com/Downloads/MySQL-5.5/mysql-5.5.29.tar.gztar xvfz mysql-5.5.29.tar.gzcd mysql-5.5.29cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/localmysql/data/ -DMYSQL_UNIX_ADDR=/usr/localmysql/data/mysqld.sock -DWITH_INNOBASE_STORAGE_ENGINE=1 -DSYSCONFDIR=/etc -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_unicode_ci -DWITH_DEBUG=0makesudo make install #下載安裝mysql-python wget http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.3/MySQL-python-1.2.3.tar.gztar xvfz MySQL-python-1.2.3.tar.gzcd MySQL-python-1.2.3 #修改site.py中mysql_config的路徑(為mysql安裝路徑下的/bin/mysql_config), site.pymysql_config = /usr/local/mysql/bin/mysql_config #更改完進行編譯和安裝 python setup.py build
sudo python setup.py install #將mysql安裝路徑下的lib加入到環境變數LD_LIBRARY_PATH中 export LD_LIBRARY_PATH=/usr/local/mysql/lib/:$LD_LIBRARY_PATH

5、安裝一些Python的常用模組和tornado

pip install tornadopip install torndb pip install requestspip install markdown

6、配置Mysql

groupadd mysql useradd -g mysql mysql chown mysql.mysql -R /service/mysql/ /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf

7、安裝Nginx

wget http://nginx.org/download/nginx-0.8.33.tar.gz tar zxvf nginx-0.8.33.tar.gzcd nginx-0.8.33 ./configuremake make install

8、配置nginx,編輯/usr/local/nginx/conf/nginx.conf檔案

user nobody;worker_processes 1;  events {    worker_connections 1024;}http {    include mime.types;    default_type application/octet-stream;    upstream snail {        server 127.0.0.1:8888;    }    sendfile on; #tcp_nopush on; keepalive_timeout 65;    proxy_read_timeout 200;    tcp_nopush on;    tcp_nodelay on;    gzip on;    gzip_min_length 1000;    gzip_proxied any;    server {        listen 80;        server_name localhost; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html;        location = /50x.html {            root html;        }        location / {            proxy_pass_header Server;            proxy_set_header Host $http_host; #proxy_redirect false; proxy_set_header X-Real-IP $remote_addr;            proxy_set_header X-Scheme $scheme;            proxy_pass http://snail; }    }}

9、建立一個項目

vi demo.py
import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler):     def get(self): self.write("Hello, world")application = tornado.web.Application([    (r"/", MainHandler),]) if __name__ == "__main__":    application.listen(8888)    tornado.ioloop.IOLoop.instance().start()

10、運行這個項目

#啟動項目 nohup python demo.py & #重啟Nginx /usr/local/nginx/sbin/nginx -s reload
在瀏覽器中輸入http://127.0.0.1 看到頁面輸出hello word!

Centos搭建Python+Nginx+Tornado+Mysql環境

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.