筆者很想有 Go 的實戰項目經驗,無奈目前公司暫未給出實戰機會,因此只得在本身的博客項目上折騰一番。以前博客是用 PHP 的 Laravel 寫的,前段時間將其後端所有用 Go 重寫了一遍,而後在部署上栽了坑。python
若是是單服務,在更新的過程當中勢必會出現服務不可用的狀態。不像 PHP 這種無需編譯的語言,直接將代碼文件覆蓋便可。linux
只有一臺服務器,那麼就只能起兩個或以上的服務,用 Nginx 來實現簡單的負載均衡。nginx
upstream blog { server 127.0.0.1:8881; server 127.0.0.1:8882; }
使用 supervisor 守護進程軟件來管理服務,包括啓動暫停重啓等操做shell
[program:blogapi1] directory=/var/www/api.xfly.one/s1 command=/var/www/api.xfly.one/s1/production-blog autostart=true autorestart=true startsecs=5 user=root redirect_stderr=true stdout_logfile=/var/log/supervisord/blogapi1.log [program:blogapi2] directory=/var/www/api.xfly.one/s2 command=/var/www/api.xfly.one/s2/production-blog autostart=true autorestart=true startsecs=5 user=root redirect_stderr=true stdout_logfile=/var/log/supervisord/blogapi2.log
部署腳本也很簡單,總的思路就是循環關掉其中一個服務,更新,而後再從新開啓。vim
#!/bin/bash make SERVER_IP="xfly@127.0.0.1" SERVER_DIR="/var/www/api.xfly.one" for i in 1 2 do ssh $SERVER_IP "supervisorctl stop blogapi$i" scp production-blog $SERVER_IP:$SERVER_DIR/s$i ssh $SERVER_IP "supervisorctl start blogapi$i" done echo "deploy completed..."
對應的 Makefile 代碼以下:後端
all: production local: gotool go build -v . production: gotool GOOS=linux GOARCH=amd64 go build -o production-blog -v . clean: rm -f blog rm -f production-blog find . -name "[._]*.s[a-w][a-z]" | xargs -i rm -f {} gotool: gofmt -w . go tool vet . 2>&1 | grep -v vendor;true help: @echo "make - compile the source code" @echo "make clean - remove binary file and vim swp files" @echo "make gotool - run go tool 'fmt' and 'vet'" .PHONY: clean gotool help
通常安裝 supervisor 直接使用 pip install supervisor
或者使用 easy_install supervisor
便可。api
可是,因爲 supervisor 目前使用的 3.3.4 及如下版本還不兼容 python3,因此若是服務器使用的是 python3,那麼得先裝個 python2.7 或更低版本的,而後用 python2.7 安裝。bash
此時若是服務器存在多個版本的 python,能夠使用命令 python -m pip install supervisor
來指定 pip 使用的 python 版本。服務器