主要參考:http://www.reibang.com/p/37d2e9dadd33
參考之后發(fā)現(xiàn)還是有的地方不一樣的浪默。我是基于centos7.6(http://archive.kernel.org/centos-vault/7.6.1810/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso)安裝的彤避。
一.先把centos的基本環(huán)境清理一番
1.更新update到最新版本
# yum update
2.卸載老版本的docker
# yum remove docker docker-common docker-selinux docker-engine
3.安裝需要的軟件包
# yum install -y yum-utils device-mapper-persistent-data lvm2
4.設(shè)置yum源(還是馬爸爸的鏡像源好用)
# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
二.安裝docker
1.查看可選的docker版本
# yum list docker-ce --showduplicates|sort -r
2.安裝docker
# yum install docker-ce-18.03.1.ce -y
3.啟動docker
# systemctl start docker
4.配置國內(nèi)鏡像
vi /etc/docker/daemon.json
{
"registry-mirrors":["https://6kx4zyno.mirror.aliyuncs.com"]
}
5.重載配置
# systemctl reload docker
6.重啟docker
# systemctl restart docker
三.安裝docker-compose
1.安裝epel-release,這個安裝是為了防止直接運行python-pip 報【No package python-pip available】
# yum -y install epel-release
2.安裝docker-compose
# yum install python-pip -y && pip install --upgrade pip && pip install -U docker-compose
以上方式安裝發(fā)現(xiàn)因為python版本和系統(tǒng)版本問題的影響較大武学,每次安裝都報不同的錯誤,都要逐個去解決,所以十分麻煩恳啥。后面找了另外一種安裝方式奉件,使用過來還是比較好的:
1. 拉取docker-compose
# wget https://github.com/docker/compose/releases/download/1.23.0-rc3/docker-compose-Linux-x86_64
2.將docker-compose移動至系統(tǒng)執(zhí)行目錄中
# mv docker-compose-Linux-x86_64 /usr/local/bin/docker-compose
3. 給docker-compose添加可執(zhí)行權(quán)限
# chmod +x /usr/local/bin/docker-compose
4.查看docker-compose版本
# docker-compose --version
四.修改官方默認(rèn)docker-compose.yml文件
通過命令 git clone https://github.com/swoft-cloud/swoft
從 Github
上 克隆(clone)
Swoft 項目。
將docker-compose.yml
修改如下:
version: '3.4'
services:
swoft:
image: swoft/swoft
# for local develop
command: php -S 127.0.0.1:13300 # 設(shè)置為需要手動啟動
container_name: swoft-srv # 容器名
environment:
- APP_ENV=dev
- TIMEZONE=Asia/Shanghai
restart: always
depends_on:
- mysql
- redis
ports:
- "18306:18306"
- "18307:18307"
- "18308:18308"
volumes:
- ./:/var/www/swoft #將宿主機當(dāng)前所在項目映射到容器/var/www/swoft目錄中
五.安裝基本配置文件
composer install --no-dev # 不安裝 dev 依賴會更快一些
cp .env.example .env
vim .env # 根據(jù)需要調(diào)整啟動參數(shù)
六.開啟容器
在docker-compose.yml 同級目錄下组力,執(zhí)行 docker-compose up -d
命令執(zhí)行后我們可以看到 Starting swoft ... done 即表示啟動容器成功。如果設(shè)置了手動啟動(command: php -S 127.0.0.1:13300),是沒有這個提示的抖拴。
七.進入容器
執(zhí)行docker ps -a命令可以查看啟動的容器信息燎字,下面為示例信息:
得知 容器名稱(Container Name)為 swoft-srv,我們可以執(zhí)行 docker exec -it swoft-srv bash 進入到容器內(nèi)阿宅。
通過 docker exec 命令進入容器后候衍,我們留意到光標(biāo)左側(cè)的內(nèi)容root@cd4c36fa7cf7: 即為已進入容器內(nèi),其中 cd4c36fa7cf7為對應(yīng)的 容器ID(Container ID)洒放。
八.安裝 Composer 依賴及生成 自動加載(Autoload) 文件
由于 Swoft 官方鏡像 swoft/swoft 配置的工作目錄為 /var/www/swoft脱柱,而 docker-compose.yml 又將項目當(dāng)前目錄關(guān)聯(lián)了容器 /var/www/swoft 目錄,即通過 docker exec 進入的目錄已經(jīng)為 /var/www/swoft 目錄拉馋,即項目目錄榨为,所以我們可以直接執(zhí)行 composer install 命令來加載 Composer 的依賴并生成 自動加載(Autoload) 文件。
考慮到國內(nèi)的網(wǎng)絡(luò)環(huán)境煌茴,我們在執(zhí)行 composer install 命令前可以先執(zhí)行 composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ 命令配置 Composer 中國鏡像源 加速安裝速度随闺。
當(dāng)然你也可以換成其他的源,這里我列出了常用的源,當(dāng)然swoft官方也有說明了蔓腐。
- aliyun https://mirrors.aliyun.com/composer/ 推薦
- tencent https://mirrors.cloud.tencent.com/composer/
- huaweicloud https://mirrors.huaweicloud.com/repository/php/
- cnpkg.org https://php.cnpkg.org
- laravel-china https://packagist.laravel-china.org
九.啟動 Swoft 服務(wù)
安裝完 Composer 依賴后矩乐,便可以執(zhí)行 php bin/swoft http:start 啟動服務(wù)了。
我們可以打開瀏覽器訪問一下 http://192.168.229.129:18306
(自己虛擬機域名)回论,當(dāng)你看到下圖即大功告成了散罕!
十.附上相關(guān)運行服務(wù)命令
1.幫助命令
# php bin/swoft -h
Console application description (Version: 2.0.0)
Usage:
bin/swoft COMMAND [arg0 arg1 arg2 ...] [--opt -v -h ...]
Options:
--debug Setting the application runtime debug level(0 - 4)
--no-color Disable color/ANSI for message output
-h, --help Display this help message
-V, --version Show application version information
--expand Expand sub-commands for all command groups
Available Commands:
agent This is an agent for Apllo config center
app There are some help command for application[by devtool]
dclient Provide some simple tcp, ws client for develop or testing[by devtool]
demo Class DemoCommand
dinfo There are some commands for application dev[by devtool]
entity Generate entity class by database table names[by devtool]
http Provide some commands to manage the swoft HTTP server(alias: httpsrv)
issue There are some commands for application dev[by devtool]
migrate Manage swoft project database migration commands[by devtool](alias: mig)
process Provides some command for manage process pool
rpc Provide some commands to manage swoft RPC server
tcp Provide some commands to manage swoft TCP server(alias: tcpsrv)
test Class TestCommand
ws Provide some commands to manage swoft websocket server(alias: wsserver,websocket)
More command information, please use: bin/swoft COMMAND -h
reload只是重新釋放一下內(nèi)存,只在開發(fā)過程中有用傀蓉,線上請勿使用欧漱。
更新代碼時可以放心使用restart,swoole底層做了優(yōu)化葬燎,不會中斷正在處理的請求
2.http服務(wù)器
// 啟動服務(wù)
php bin/swoft http:start
// 守護進程啟動
php bin/swoft http:start -d
// 重啟
php bin/swoft http:restart
// 重新加載
php bin/swoft http:reload
// 關(guān)閉服務(wù)
php bin/swoft http:stop
3.WebSocket服務(wù)器
啟動WebSocket服務(wù)器,可選是否 同時支持http處理
// 啟動服務(wù)
php bin/swoft ws:start
// 守護進程啟動
php bin/swoft ws:start -d
// 重啟
php bin/swoft ws:restart
// 重新加載
php bin/swoft ws:reload
// 關(guān)閉服務(wù)
php bin/swoft ws:stop
4.rpc服務(wù)器
使用獨立的RPC服務(wù)器
// 啟動服務(wù)
php bin/swoft rpc:start
// 守護進程啟動
php bin/swoft rpc:start -d
// 重啟
php bin/swoft rpc:restart
// 重新加載
php bin/swoft rpc:reload
// 關(guān)閉服務(wù)
php bin/swoft rpc:stop