nginx(web服务器层):
接收请求
处理请求
返回响应
uWSGI(wsgi层):实现了uwsgi、WSGI、HTTP协议等
1.新建用户
# useradd -m -d /home/myname myname
# passwd myname
修改权限
修改/etc/passwd文件,找到如下行,把用户ID修改为0,如下所示:
root 用户切换为普通用户 :
用
su -l myname
普通用户切换为root用户:```su -root``
2.安装MySQL
yum install mysql-server mysql mysql-devel
启动
service mysqld start
改密码
mysqladmin -u root password 'password'
mysql -uroot -p
输入密码,就可以进入MySQL了
MySQL乱码问题:输入中文变问号?
解决:
修改 /etc/my.cnf
在[mysqld] 和 [client] 下添加character_set_server = utf8
和default-character-set=utf8
[client]
default-character-set = utf8
[mysql]
default-character-set = utf8
[mysqld]
character_set_server = utf8
例子:
[client]
default-character-set = utf8
[mysql]
default-character-set = utf8
[mysqld]
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server = utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake
flask中设置:SQLALCHEMY_DATABASE_URI = 'mysql://root:password@localhost/flask'
其他:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html
3.安装Python
wget [http://www.python.org/ftp/python/2.7.3/Python-2.7.6.tgz](http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz)
tar zxf Python-2.7.6.tgz
cd Python-2.7.6
yum install -y gcc
./configure --prefix=/usr/local/python27
make && make install
使用--prefix的原因:http://www.maybe520.net/blog/1945/
建立软连接,在命令行输入python27,即可调出Python2.7.6,即多版本共存
ln -sf /usr/local/python27/bin/python2.7 /usr/local/bin/python27
easy_install, pip
wget [http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e](http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e)
tar zxf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11 python2.7
setup.py install
ln -s /usr/local/python27/bin/easy_install-2.7 /usr/local/bin/easy_install27
easy_install27 pip
ln -s /usr/local/python27/bin/pip /usr/bin/pip27
virtualenv
pip27 virtualenv
出现错误
The directory '/home/yly/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled.
解决:
cd到项目文件夹,建立virtualenv
出现错误:
# virtualenv
-bash: virtualenv: command not found
解决
python27 -m virtualenv venv
source venv/bin/activate
pip27 install -r requirements.txt
4.uwsgi 和 nginx
在venv虚拟环境立用pip就可以了,不要用pip27
pip install uwsgi
在你的项目根目录下创建一个配置文件uwsgiconfig.ini(uwsgi支持多种配置文件格式,xml,ini,json等)
[uwsgi]
socket = 127.0.0.1:8001 //启动程序时所使用的地址和端口,通常在本地运行flask项目,
//地址和端口是127.0.0.1:5000,
//不过在服务器上是通过uwsgi设置端口,通过uwsgi来启动项目,
//也就是说启动了uwsgi,也就启动了项目。
chdir = /home/www/ //项目目录
wsgi-file = manage.py //flask程序的启动文件,通常在本地是通过运行
// python manage.py runserver 来启动项目的
callable = app //程序内启用的application变量名
processes = 4 //处理器个数
threads = 2 //线程个数
stats = 127.0.0.1:9191 //获取uwsgi统计信息的服务地址
保存配置文件,我们可以通过键入 uwsgi uwsgiconfig.ini
来启动uwsgi。
关闭:killall -9 uwsgi
#rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
#yum install nginx
nginx命令
启动: nginx
停止: nginx -s -stop
强制停止: pkill -9 nginx
查看nginx是否应用配置文件: nginx -t
查看版本: nginx -v
查看端口号:
netstat -ntlp
在 /etc/nginx/conf.d/
下,新建 app.conf ,删除 default.conf
app.conf:
server {
listen 80; //默认的web访问端口
server_name xxx.xxx.xxx.xxx; //你的公网ip
#charset koi8-r;
access_log /home/www/WebBlogold/logs/access.log; //服务器接收的请求日志,
//需要在项目文件夹下创建
//logs文件夹,下同。
error_log /home/www/WebBlogold/logs/error.log; //错误日志
location / {
include uwsgi_params; //这里是导入的uwsgi配置
uwsgi_pass 127.0.0.1:8001; //需要和uwsgi的配置文件里socket项的地址
//相同,否则无法让uwsgi接收到请求。
uwsgi_param UWSGI_PYHOME /home/www/WebBlogold/venv; //python的位置(虚拟环境下)
uwsgi_param UWSGI_CHDIR /home/www/WebBlogold; //项目根目录
uwsgi_param UWSGI_SCRIPT manage:app; //启动项目的主程序(在本地上运行
//这个主程序可以在flask内置的
//服务器上访问你的项目)
}
检查一下nginx的配置文件是否应用 nginx -t 没有成功应用的话,检查一下配置文件。
键入 nginx 来启动nginx
(平滑重启: /usr/nginx/sbin/nginx -s reload)
键入 uwsgi uwsgiconfig.ini 启动uwsgi
(使用 nohub 前缀来后台启动)
参考:
https://segmentfault.com/a/1190000004294634
https://gist.github.com/binderclip/f6b6f5ed4d71fa64c7c5
网友评论