博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uWSGI安装配置
阅读量:5127 次
发布时间:2019-06-13

本文共 1506 字,大约阅读时间需要 5 分钟。

uWSGI安装配置
官方网站:
环境:
CentOS 7.2
python-2.7.5
一.安装
yum -y install gcc gcc-c++ python-devel
curl -sSL   |tar -xvf - --gzip
cd uwsgi-2.0.14
make -j4
################# uWSGI configuration #################
pcre = True
kernel = Linux
malloc = libc
execinfo = False
ifaddrs = True
ssl = True
zlib = True
locking = pthread_mutex
plugin_dir = .
timer = timerfd
yaml = embedded
json = False
filemonitor = inotify
routing = True
debug = False
ucontext = True
capabilities = False
xml = libxml2
event = epoll
############## end of uWSGI configuration #############
total build time: 0 seconds
*** uWSGI is ready, launch it with ./uwsgi ***
编译完会生成二进制文件uwsgi,将其copy到PATH路径下即可,这里放到/usr/bin下
二.创建配置文件
以ini格式为例
mkdir -p /etc/uwsgi/valsals
cat > /etc/uwsgi/emperor.ini<<EOF

[uwsgi]

emperor = /etc/uwsgi/vassals

ini= :app1

[app1]

socket = :9090

socket = /dev/shm/uwsgi.sock

processes = 10

 

master = true

EOF
三.配置systemd管控

cat >/lib/systemd/system/emperor.uwsgi.service <<EOF

[Unit]

Description=uWSGI Emperor

After=syslog.target

[Service]

ExecStart=/usr/bin/uwsgi --ini /etc/uwsgi/emperor.ini

# Requires systemd version 211 or newer

RuntimeDirectory=uwsgi

Restart=always

KillSignal=SIGQUIT

Type=notify

StandardError=syslog

NotifyAccess=all

[Install]

WantedBy=multi-user.target

EOF
四.启动uwsgi

root@router:~#netstat -tunlp|grep :9090

tcp        0      0 0.0.0.0:9090            0.0.0.0:*               LISTEN      31117/uwsgi         

root@router:~#ll /dev/shm/uwsgi.sock 

srwxr-xr-x. 1 root root 0 10月  9 05:16 /dev/shm/uwsgi.sock=

转载于:https://www.cnblogs.com/lixuebin/p/10814015.html

你可能感兴趣的文章
SetForegroundWindow
查看>>
数据库存储系统应用,超市小票系统
查看>>
Git
查看>>
DB Change
查看>>
nginx --rhel6.5
查看>>
Eclipse Python插件 PyDev
查看>>
selenium+python3模拟键盘实现粘贴、复制
查看>>
第一篇博客
查看>>
typeof与instanceof的区别
查看>>
网站搭建(一)
查看>>
SDWebImage源码解读之SDWebImageDownloaderOperation
查看>>
elastaticsearch
查看>>
postgreSQL 简单命令操作
查看>>
Spring JDBCTemplate
查看>>
Radon变换——MATLAB
查看>>
第五章笔记
查看>>
Iroha and a Grid AtCoder - 1974(思维水题)
查看>>
gzip
查看>>
转负二进制(个人模版)
查看>>
LintCode-Backpack
查看>>