【Python】uWSGIのバージョンをチェックする
uWSGIのバージョンチェックは以下のとおり実行します!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# uwsgi -version *** Starting uWSGI 2.0.14 (64bit) on [Thu Mar 9 23:08:48 2017] *** compiled with version: 4.4.7 20120313 (Red Hat 4.4.7-11) on 09 March 2017 22:41:52 os: Linux-2.6.32-504.16.2.el6.x86_64 #1 SMP Wed Apr 22 06:48:29 UTC 2015 nodename: lawx.jp machine: x86_64 clock source: unix pcre jit disabled detected number of CPU cores: 3 current working directory: / detected binary path: /usr/bin/uwsgi uWSGI running as root, you can use --uid/--gid/--chroot options *** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** *** WARNING: you are running uWSGI without its master process manager *** your processes number limit is 14841 your memory page size is 4096 bytes detected max file descriptor number: 1024 lock engine: pthread robust mutexes thunder lock: disabled (you can enable it with --thunder-lock) The -s/--socket option is missing and stdin is not a socket. # |