메모
uwsgi의 최신버젼을 설치하려면.. pip를 이용해본다.
현재 최신버젼은 1.9.17.1 버젼.
LTS버젼도 있지만 난 Stable한 최신버젼을 선택.
$ sudo pip install http://projects.unbit.it/downloads/uwsgi-1.9.17.1.tar.gz
또는
$ sudo apt-get install uwsgi
요렇게 하면, 설치가 자동으로 쭉~ 된다.
그리고, 맨 마지막에 configuration에서 support하는 리스트가 뜨는데.. 혹시나 False가 있다면.. 해당 라이브러리를 설치하고 난뒤에 reinstall 해줘야 한다고 한다.
################# uWSGI configuration #################
pcre = False
kernel = Linux
malloc = libc
execinfo = False
ifaddrs = True
ssl = True
matheval = False
zlib = True
locking = pthread_mutex
plugin_dir = .
timer = timerfd
yaml = True
json = False
filemonitor = inotify
routing = False
debug = False
zeromq = False
capabilities = False
xml = expat
event = epoll
############## end of uWSGI configuration #############
*** uWSGI is ready, launch it with /usr/local/bin/uwsgi ***
예를들어서, json이 위에서 False로 되어있다. 이 configuration을 True로 바꾸기 위해서 linjansson-dev를 설치해줘야 한다. (참고 설치되는 버젼은 2.2.1. 최신버젼은 2.5)
$ sudo apt-get install libjansson-dev
'Web' 카테고리의 다른 글
Django 이전 버젼으로 교체 (0) | 2013.12.05 |
---|---|
Bootstrap에서 navbar 높이 변경 방법 (0) | 2013.10.08 |
공개 소프트웨어 라이센스 종류과 제약사항. (0) | 2013.10.01 |
python으로 ucloud storage에 파일 업로드 방법 (0) | 2013.09.15 |
django에서 cloud db서버의 mysql 접근시 502 bad gateway 오류가 난다면.. (0) | 2013.09.06 |