怎么在CentOS中部署一個flask項(xiàng)目?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
為開江等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及開江網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、開江網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
1.安裝git
可以選擇 github 或者Bitbucket,當(dāng)然你也可以自己搭建 git服務(wù)器,但我覺得沒啥必要,我選擇Bitbucket,主要是因?yàn)樗接袔烀赓M(fèi)
sudo yum install git
后續(xù)就跟我們本地開發(fā)沒什么區(qū)別了,配置 ssh key,clone代碼,就不展開了,項(xiàng)目目錄建議放在 /home/www/ 下
2. 安裝 MySQL
添加 MySQL YUM 源
$wget 'https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm' $sudo rpm -Uvh mysql57-community-release-el7-11.noarch.rpm $yum repolist all | grep mysql mysql-connectors-community/x86_64 MySQL Connectors Community 36 mysql-tools-community/x86_64 MySQL Tools Community 47 mysql57-community/x86_64 MySQL 5.7 Community Server 187
安裝最新版本
$sudo yum install mysql-community-server
啟動 MySQL 服務(wù)
$sudo service mysqld start $sudo systemctl start mysqld #CentOS 7 $sudo systemctl status mysqld ● mysqld.service - MySQL Community Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: active (running) since Sat 2017-05-27 12:56:26 CST; 15s ago Process: 2482 ExecStartPost=/usr/bin/mysql-systemd-start post (code=exited, status=0/SUCCESS) Process: 2421 ExecStartPre=/usr/bin/mysql-systemd-start pre (code=exited, status=0/SUCCESS) Main PID: 2481 (mysqld_safe) CGroup: /system.slice/mysqld.service ├─2481 /bin/sh /usr/bin/mysqld_safe --basedir=/usr └─2647 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/...
說明已經(jīng)正在運(yùn)行中了
修改密碼
$ mysql -uroot -p
這里有要求你輸入密碼,Mysql安裝時(shí)會生成一個默認(rèn)密碼,使用 grep "temporary password" /var/log/mysqld.log 命令,返回結(jié)果最后引號后面的字符串就是root的默認(rèn)密碼
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
修改編碼
在 /etc/my.cnf 中設(shè)置默認(rèn)的編碼
[client] default-character-set = utf8 [mysqld] default-storage-engine = INNODB character-set-server = utf8 collation-server = utf8_general_ci #不區(qū)分大小寫 collation-server = utf8_bin #區(qū)分大小寫 collation-server = utf8_unicode_ci #比 utf8_general_ci 更準(zhǔn)確
創(chuàng)建數(shù)據(jù)庫
mysql> CREATE DATABASECHARACTER SET utf8;
3. 安裝python3 pip3
CentOS 7 默認(rèn)安裝了 Python 2,當(dāng)需要使用 Python 3 的時(shí)候,可以手動下載 Python 源碼后編譯安裝。
安裝 Python 3
sudo mkdir /usr/local/python3 # 創(chuàng)建安裝目錄 $ wget --no-check-certificate https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz # 下載 Python 源文件 # 注意:wget獲取https的時(shí)候要加上:--no-check-certifica $ tar -xzvf Python-3.6.2.tgz # 解壓縮包 $ cd Python-3.6.2 # 進(jìn)入解壓目錄 sudo ./configure --prefix=/usr/local/python3 # 指定創(chuàng)建的目錄 sudo make sudo make install # 編譯安裝
執(zhí)行./configure時(shí)可能會報(bào)錯,configure: error: no acceptable C compiler found in $PATH,這是因?yàn)槲窗惭b合適的編譯器,安裝下就好了,
sudo yum install gcc-c++ (使用sudo yum install gcc-c++時(shí)會自動安裝/升級gcc及其他依賴的包。)
配置兩個版本共存
創(chuàng)建 python3 的軟鏈接:
$ sudo ln -s /usr/local/python3/bin/python3 /usr/bin/python3
這樣就可以通過 python 命令使用 Python 2, python3 來使用 Python 3。
安裝 pip
$ sudo yum -y install epel-release # 首先安裝 epel 擴(kuò)展源 $ sudo yum -y install python-pip # 安裝 python-pip $ sudo yum clean all # 清除 cache
通過這種方式貌似只能安裝 pip2,想要安裝 Python 3 的 pip,可以通過以下的源代碼安裝方式。
# 下載源代碼 $ wget --no-check-certificate https://github.com/pypa/pip/archive/9.0.1.tar.gz $ tar -zvxf 9.0.1.tar.gz # 解壓文件 $ cd pip-9.0.1 $ python3 setup.py install # 使用 Python 3 安裝
創(chuàng)建鏈接:
$ sudo ln -s /usr/local/python3/bin/pip /usr/bin/pip3
升級 pip
$ pip install --upgrade pip
4. 安裝 gunicorn
Gunicorn (獨(dú)角獸)是一個高效的Python WSGI Server,通常用它來運(yùn)行 wsgi application(由我們自己編寫遵循WSGI application的編寫規(guī)范) 或者 wsgi framework(如Django,Paster),地位相當(dāng)于Java中的Tomcat。 WSGI就是這樣的一個協(xié)議:它是一個Python程序和用戶請求之間的接口。WSGI服務(wù)器的作用就是接受并分析用戶的請求,調(diào)用相應(yīng)的python對象完成對請求的處理,然后返回相應(yīng)的結(jié)果。 簡單來說gunicorn封裝了HTTP的底層實(shí)現(xiàn),我們通過gunicorn啟動服務(wù),用戶請求與服務(wù)相應(yīng)都經(jīng)過gunicorn傳輸
創(chuàng)建虛擬環(huán)境
cd /home/www/blog mkdir venv python3 -m venv venv
激活虛擬環(huán)境:
source venv/bin/activate
然后根據(jù) requirements.txt 文件安裝依賴包:
pip3 install -r requirements.txt
安裝gunicorn
pip3 install gunicorn
在項(xiàng)目根目錄創(chuàng)建一個wsgi.py文件
from app import create_app application = create_app('production') if __name__ == '__main__': application.run()
不再通過manage.py啟動服務(wù),那只在開發(fā)的時(shí)候使用
啟動服務(wù):
gunicorn -w 4 -b 127.0.0.1:8000 wsgi:application
5. 安裝 Nginx
nginx 是一個高性能的web服務(wù)器。通常用來在前端做反向代理服務(wù)器。所謂正向與反向(reverse),只是英文說法翻譯。代理服務(wù),簡而言之,一個請求經(jīng)過代理服務(wù)器從局域網(wǎng)發(fā)出,然后到達(dá)互聯(lián)網(wǎng)上服務(wù)器,這個過程的代理為正向代理。如果一個請求,從互聯(lián)網(wǎng)過來,先進(jìn)入代理服務(wù)器,再由代理服務(wù)器轉(zhuǎn)發(fā)給局域網(wǎng)的目標(biāo)服務(wù)器,這個時(shí)候,代理服務(wù)器為反向代理(相對正向而言)。
正向代理:{ 客戶端 ---》 代理服務(wù)器 } ---》 服務(wù)器
反向代理:客戶端 ---》 { 代理服務(wù)器 ---》 服務(wù)器 }
{} 表示局域網(wǎng)
nginx既可以做正向,也可以做反向。
$ yum -y install nginx
啟動 nginx 服務(wù)
$ service nginx start
停止 nginx 服務(wù)
$ service nginx stop
重啟 nginx 服務(wù)
$ service nginx restart
平滑重啟
nginx配置改動了,可以重新加載而不用先關(guān)閉再打開
$ nginx -s reload
啟動后 ,在瀏覽器中 輸入服務(wù)器的 ip 地址,就可以看到
到這里 yum 安裝 nginx 就完成了
添加配置
nginx的配置文件為: /etc/nginx/nginx.conf
server { listen 80; server_name adisonhyh.com; location / { proxy_pass http://127.0.0.1:8000; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
監(jiān)聽http默認(rèn)的端口號80
server_name:個人網(wǎng)站域名
把請求代理到本機(jī)的8000端口(gunicorn啟動服務(wù)指定的端口) 剩下proxy_set_header照抄
gunicorn和nginx關(guān)系:
gunicorn 可以單獨(dú)提供服務(wù),但生產(chǎn)環(huán)境一般不這樣做。首先靜態(tài)資源(jscssimg)會占用不少的請求資源,而對于 gunicorn 來講它本身更應(yīng)該關(guān)注實(shí)際業(yè)務(wù)的請求與處理而不應(yīng)該把資源浪費(fèi)在靜態(tài)資源請求上;此外,單獨(dú)運(yùn)行 gunicorn 是沒有辦法起多個進(jìn)程多個端口來負(fù)載均衡的。
nginx 的作用就是彌補(bǔ)以上問題,首先作為前端服務(wù)器它可以處理一切靜態(tài)文件請求,此時(shí) gunicorn 作為后端服務(wù)器,nginx 將會把動態(tài)請求轉(zhuǎn)發(fā)給后端服務(wù)器,因此我們可以起多個 gunicorn 進(jìn)程,然后讓 nginx 作均衡負(fù)載轉(zhuǎn)發(fā)請求給多個 gunicorn 進(jìn)程從而提升服務(wù)器處理效率與處理能力。最后,nginx 還可以配置很多安全相關(guān)、認(rèn)證相關(guān)等很多處理,可以讓你的網(wǎng)站更專注業(yè)務(wù)的編寫,把一些轉(zhuǎn)發(fā)規(guī)則等其它業(yè)務(wù)無關(guān)的事情交給 nginx 做。
配置好后打開本地瀏覽器,輸入域名,應(yīng)該就能訪問了。
6.supervisor
如果你需要進(jìn)程一直執(zhí)行,若該進(jìn)程因各種原因中斷,也會自動重啟的話,supervisor是一個很好的選擇。 supervisor管理進(jìn)程,是通過fork/exec的方式將這些被管理的進(jìn)程當(dāng)作supervisor的子進(jìn)程來啟動,所以我們只需要將要管理進(jìn)程的可執(zhí)行文件的路徑添加到supervisor的配置文件中就好了。此時(shí)被管理進(jìn)程被視為supervisor的子進(jìn)程,若該子進(jìn)程異常終端,則父進(jìn)程可以準(zhǔn)確的獲取子進(jìn)程異常終端的信息,通過在配置文件中設(shè)置autostart=true,可以實(shí)現(xiàn)對異常中斷的子進(jìn)程的自動重啟。
安裝 supervisor
$ pip install supervisor $ echo_supervisord_conf > supervisor.conf # 生成 supervisor 默認(rèn)配置文件 $ vim supervisor.conf # 修改 supervisor 配置文件,添加 gunicorn 進(jìn)程管理
在blog supervisor.conf 配置文件底部添加 (注意我的工作路徑是 www/home/blog/ )
[program:blog] command=/home/www/blog/venv/bin/gunicorn -w4 -b0.0.0.0:8000 wsgi:application ;supervisor啟動命令 directory=/home/www/blog ; 項(xiàng)目的文件夾路徑 startsecs=0 ; 啟動時(shí)間 stopwaitsecs=0 ; 終止等待時(shí)間 autostart=false ; 是否自動啟動 autorestart=false ; 是否自動重啟 stdout_logfile=/home/www/blog/logs/gunicorn.log ; log 日志 stderr_logfile=/home/www/blog/logs/gunicorn.err ; 錯誤日志
使用 supervsior 啟動 gunicorn
$ sudo supervisord -c supervisor.conf $ sudo supervisorctl start blog
在瀏覽器地址欄輸入配置的地址即可訪問網(wǎng)站。
7. fabric
最后一步,我們使用fabric實(shí)現(xiàn)遠(yuǎn)程操作和部署。Fabric 是一個 Python 下類似于 Makefiles 的工具,但是能夠在遠(yuǎn)程服務(wù)器上執(zhí)行命令。
安裝 fabric
pip install fabric
在 blog 目錄下新建一個fabfile.py文件
import os from fabric.api import local, env, run, cd, sudo, prefix, settings, execute, task, put from fabric.contrib.files import exists from contextlib import contextmanager env.hosts = ['204.152.201.69'] env.user = 'root' env.password = '****'#密碼 env.group = "root" DEPLOY_DIR = '/home/www/blog' VENV_DIR = os.path.join(DEPLOY_DIR, 'venv') VENV_PATH = os.path.join(VENV_DIR, 'bin/activate') @contextmanager def source_virtualenv(): with prefix("source {}".format(VENV_PATH)): yield def update(): with cd('/home/www/blog/'): sudo('git pull') def restart(): with cd(DEPLOY_DIR): if not exists(VENV_DIR): run("virtualenv {}".format(VENV_DIR)) with settings(warn_only=True): with source_virtualenv(): run("pip install -r {}/requirements.txt".format(DEPLOY_DIR)) with settings(warn_only=True): stop_result = sudo("supervisorctl -c {}/supervisor.conf stop all".format(DEPLOY_DIR)) if not stop_result.failed: kill_result = sudo("pkill supervisor") if not kill_result: sudo("supervisord -c {}/supervisor.conf".format(DEPLOY_DIR)) sudo("supervisorctl -c {}/supervisor.conf reload".format(DEPLOY_DIR)) sudo("supervisorctl -c {}/supervisor.conf status".format(DEPLOY_DIR)) sudo("supervisorctl -c {}/supervisor.conf start all".format(DEPLOY_DIR)) @task def deploy(): execute(update) execute(restart)
現(xiàn)在代碼如果更新了,可以直接在本地執(zhí)行遠(yuǎn)程部署了
fab deploy
關(guān)于怎么在CentOS中部署一個flask項(xiàng)目問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。