基于宝塔面板安装部署

感谢 MoChat 开发者群群友 @小天 提供的原始安装笔记。

安装前必看重要提示:

由于项目是前后端分离方式开发和部署的,所以安装演示过程中会用到三个域名:

  • 商户后台:dashboard.test
  • 聊天侧边栏:sidebar.test
  • 后端API接口:backend.test
  • 运营工具:operation.test

假设你自己的主域名是 mochat.com,那你可以分别配置为,以下域名可以自定义,下面只是举例:

  • 商户后台:scrm.mochat.com
  • 聊天侧边栏:h5.mochat.com
  • 后端API接口:api.mochat.com
  • 运营工具:op.mochat.com

安装宝塔面板

  1. 阿里云ECS服务器,重新初始化操作系统 , 申请OSS ALiyunOS,安全组开放宝塔8888端口
  2. 安装面板,执行以下命令
  1. ~# yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

Image text 3. 宝塔面板安装完成
Image text

安装环境

  1. 打开宝塔面板-登录
    Image text

  2. 宝塔面板软件商店里面安装软件

    • nginx 1.18
      Image text
      Image text
      Image text
    • php74
      Image text
      Image text
    • mysql5.7
      Image text
      Image text
      Image text
    • PM2管理器 -4.2
      Image text
    • PM2管理器->模块管理->yarn 安装(绑定环境变量export PATH=$PATH:/www/server/nvm/versions/node/v14.16.0/bin)
      Image text
      Image text
  3. 安装Swoole

    • 宝塔面板->软件商店->PHP-7.4->安装扩展->Swoole4
      Image text
    • 宝塔面板->软件商店->PHP-7.4->配置文件-> 最后添加以下配置并保存
    1. [swoole]
    2. extension = swoole.so
    3. swoole.use_shortname = off

    Image text

  4. 安装Redis

    • 宝塔面板->软件商店->PHP-7.4->安装扩展->redis
      Image text
  5. 安装php7-wxwork-finance-sdk

    • 执行以下命令进行安装
    1. ~# cd /www
    2. /www# git clone https://github.com/pangdahua/php7-wxwork-finance-sdk.git
    3. /www# wget https://wwcdn.weixin.qq.com/node/wework/images/sdk_20200401.zip

    Image text

    1. /www# unzip sdk_20200401.zip

    Image text

    1. /www# cd php7-wxwork-finance-sdk
    2. /www/php7-wxwork-finance-sdk# /www/server/php/74/bin/phpize
    3. /www/php7-wxwork-finance-sdk# ./configure --with-php-config=/www/server/php/74/bin/php-config --with-wxwork-finance-sdk=/www/sdk_20200401/C_sdk
    4. /www/php7-wxwork-finance-sdk# make && make install

    Image text
    Image text

    • 宝塔面板->软件商店->PHP-7.4->配置文件->最后面添加以下配置并保存
    1. [wxwork_finance_sdk]
    2. extension=wxwork_finance_sdk.so

    Image text

  6. 安装fileinfo

    • 宝塔面板->软件商店->PHP-7.4->安装扩展->fileinfo
      Image text
  7. 安装ffmpeg

    • 执行以下命令进行安装
    1. /www# cd /www
    2. /www# wget https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
    3. /www# tar -jxvf ffmpeg-snapshot.tar.bz2

    Image text

    1. /www# yum install yasm -y
    2. /www# cd ffmpeg
    3. /www/ffmpeg# ./configure --enable-shared && make && make install

    Image text
    Image text

    1. ## 验证
    2. /www/ffmpeg# ffmpeg -version
    3. ## 提示错误
    4. ffmpeg: error while loading shared libraries: libavdevice.so.58: cannot open shared object file: No such file or directory
    5. ## 查找错误原因
    6. /www/ffmpeg# ldd ffmpeg
    7. ## 查找缺失文件
    8. /www/ffmpeg# find /usr -name 'libavdevice.so.58'
    9. ## 得到文件路径
    10. /usr/local/lib/libavdevice.so.58

    Image text

    1. ## 添加
    2. export LD_LIBRARY_PATH=/usr/local/lib/

    Image text

    1. ## 完成
    2. /www/ffmpeg# ffmpeg -version

    Image text

  8. 确认相关环境正确安装(https://mochat.wiki基于宝塔面板安装部署 - 图30 (opens new window)

    • 查看 PHP 版本是否正确,需 >= 7.2,建议 7.4
    1. php -v

    Image text

    • 查看 Swoole 版本安装是否正确,并确定 swoole.use_shortname 参数值为 Off
    1. php --ri swoole

    Image text

    • 查看 Reids wxwork_finance_sdk 扩展是否正确安装
    1. php --ri redis
    2. php --ri wxwork_finance_sdk

    Image text
    Image text

    • 查看FFMpeg
    1. ffmpeg -version

    Image text

    • 确保内存大于 1024M
    1. php -i | grep memory_limit

安装项目

  1. 安装MoChat后端

    • 宝塔面板->软件商店->PHP-7.4->禁用函数->删除symlink,putenv,proc_open,pcntl系列函数
      Image text
      Image text
    • 执行以下命令安装项目
    1. # composer config -g repo.packagist composer https://mirrors.aliyun.com/composer
    2. # /usr/bin/composer self-update

    Image text

    1. # cd /www/wwwroot
    2. # git clone https://github.com/mochat-cloud/mochat.git
    3. # cd /www/wwwroot/mochat/api-server
    4. # composer install
    5. # cp .env.example .env

    Image text

    • 初始化项目,mysql数据库需要5.7版本及以上(5.7引入了json类型)执行以下命令:
    1. # php bin/hyperf.php mc:init
    2. # php bin/hyperf.php server:start -d

    Image text
    Image text
    Image text
    Image text

    注:如果不知道宝塔面板mysql默认安装的密码,请查看
    Image text

    注:如果没有mochat数据库,请链接数据库创建mochat数据库
    Image text

  2. 配置前端

    • PC管理后台

    这里修改的域名一定要写成后端api接口的域名,不要写错了。

    比如,http://api.mochat.comhttp://backend.test

    1. # cd /www/wwwroot/mochat/dashboard
    2. # cp .env.example .env
    3. # 这里修改的域名一定要写成后端api接口的域名,不要写错了,比如,http://api.mochat.com 或 http://backend.test # vi .env #修改配置文件,不会vi可以用其他编辑器打开该文件
    4. # yarn install
    5. # yarn run dll
    6. # yarn run build (2小时15分 # Screen -S dashboard)

    Image text
    Image text

    • 侧边栏

    这里修改的域名一定要写成后端api接口的域名,不要写错了。

    比如,http://api.mochat.comhttp://backend.test

    1. # cd /www/wwwroot/mochat/sidebar
    2. # cp .env.example .env
    3. # 这里修改的域名一定要写成你自己的后端api接口的域名,不要写错了,比如,http://api.mochat.com 或 http://backend.test
    4. # vi .env #修改配置文件,不会vi可以用其他编辑器打开该文件
    5. # yarn install
    6. # yarn run build

    Image text
    Image text

    注:如果再次修改.env配置文件重新构建项目时报如下错误,执行以下代码

    Image text

    1. 执行以下命令
    2. # chattr -i /www/wwwroot/mochat/sidebar/dist/.user.ini
    3. 再进行删除
    4. # rm -f /www/wwwroot/mochat/sidebar/dist/.user.ini
    5. 再次进入目录编译
    6. # yarn run build
    1. # cd /www/wwwroot/mochat/operation
    2. # cp .env.example .env
    3. # 这里修改的域名一定要写成你自己的后端api接口的域名,不要写错了,比如,http://api.mochat.com 或 http://backend.test
    4. # vi .env #修改配置文件,不会vi可以用其他编辑器打开该文件
    5. # yarn install
    6. # yarn run build

    注:如果再次修改.env配置文件重新构建项目时报如下错误,执行以下代码

    Image text

    1. 执行以下命令
    2. # chattr -i /www/wwwroot/mochat/operation/dist/.user.ini
    3. 再进行删除
    4. # rm -f /www/wwwroot/mochat/operation/dist/.user.ini
    5. 再次进入目录编译
    6. # yarn run build
  3. 宝塔面板配置站点

    • 网站 —-添加站点 backend.test php版本 纯静态,数据库 不创建 反向代理 目标URL:http://127.0.0.1:9501 发送域名 $host 开启代理 如图:
      Image text
      Image text
      Image text
    • 网站 —-添加站点 dashboard.test php版本 纯静态,数据库 不创建 网站目录 /www/wwwroot/mochat/dashboard/dist 如图:
      Image text
    • 找到刚添加的网站,点右侧的设置,进入之后点配置文件,以如图所示的位置加上
    1. location / {
    2. root /www/wwwroot/mochat/dashboard/dist;
    3. index index.html index.htm;
    4. try_files $uri $uri/ /index.html;
    5. }
    6. location /authRedirect {
    7. proxy_set_header Host $http_host;
    8. proxy_set_header X-Real-IP $remote_addr;
    9. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    10. # http时使用下面的配置
    11. proxy_cookie_path / "/; HttpOnly; SameSite=strict";
    12. # https时使用下面的配置
    13. # proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
    14. proxy_pass http://127.0.0.1:9501/dashboard/officialAccount/authRedirect/;
    15. }

    Image text

    • 网站 —-添加站点 sidebar.test php版本 纯静态,数据库 不创建 网站目录/www/wwwroot/mochat/sidebar/dist 如图:
      Image text

    • 找到刚添加的网站,点右侧的设置,进入之后点配置文件,以如图所示的位置加上

      1. location / {
      2. root /www/wwwroot/mochat/sidebar/dist;
      3. index index.html index.htm;
      4. try_files $uri $uri/ /index.html;
      5. }

      Image text

    • 网站 —-添加站点 operation.test php版本 纯静态,数据库 不创建 网站目录/www/wwwroot/mochat/operation/dist 如图:
      Image text

      • 找到刚添加的网站,点右侧的设置,进入之后点配置文件,以如图所示的位置加上

        1. location / {
        2. root /www/wwwroot/mochat/operation/dist;
        3. index index.html index.htm;
        4. try_files $uri $uri/ /index.html;
        5. }
        6. location ^~ /auth/ {
        7. proxy_set_header Host $http_host;
        8. proxy_set_header X-Real-IP $remote_addr;
        9. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        10. # http时使用下面的配置
        11. proxy_cookie_path / "/; HttpOnly; SameSite=strict";
        12. # https时使用下面的配置
        13. # proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
        14. proxy_pass http://127.0.0.1:9501/operation/auth/;
        15. }
        16. location ^~ /openUserInfo/ {
        17. proxy_set_header Host $http_host;
        18. proxy_set_header X-Real-IP $remote_addr;
        19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        20. # http时使用下面的配置
        21. proxy_cookie_path / "/; HttpOnly; SameSite=strict";
        22. # https时使用下面的配置
        23. # proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
        24. proxy_pass http://127.0.0.1:9501/operation/openUserInfo/;
        25. }

        Image text

  4. 访问

    • 后端接口访问 backend.test
      Image text
    • 管理后台 dashboard.test 如图:
      Image text
      Image text

    注意:如果后端接口访问成功,后端界面登录不成功报401的话,可能的原因是初始化管理员密码没成功,请登录mysql重置一下管理员密码

    • 首先查看.env中的默认密钥后缀配置,生成一下密码:
      Image text
    1. php -r "var_dump(password_hash(md5('123456' . '3S6ybWbSy&23fFeq8'), PASSWORD_BCRYPT));"

    Image text

    • 登录mysql重新设置一下管理员登录密码:
    1. # mysql -u用户名 -p密码
    2. # mysql> use mochat
    3. # mysql> update mc_user set password="密码";
    4. # mysql> select * from mc_user \G;

    Image text

常见问题

  • nginx设置反向代理后,返回 502 bad gateway?

请检查后端 api-server 启动成功没有,命令如下:

  1. ps aux | grep mochat

看看有没有对应的进程,如果没有,刚需执行如下命令启动

  1. cd /www/wwwroot/mochat/api-server
  2. php bin/hyperf.php server:start -d

为了服务稳定,建议使用更专业的进程管理工具来启动,详见:Supervisor 部署基于宝塔面板安装部署 - 图69 (opens new window)