当前位置:首页 > 行业动态 > 正文

CentOS 7 部署 YApi

部署 YApi 的步骤如下:

1、安装 Node.js

YApi 是基于 Node.js 开发的,所以首先需要安装 Node.js,在 CentOS 7 上,可以使用以下命令安装 Node.js:

curl sL https://rpm.nodesource.com/setup_14.x | sudo bash 
sudo yum install y nodejs

2、安装 MongoDB

YApi 需要 MongoDB 作为数据库,所以需要先安装 MongoDB,在 CentOS 7 上,可以使用以下命令安装 MongoDB:

sudo yum install y mongodborg

3、启动 MongoDB

安装完成后,启动 MongoDB 服务:

sudo systemctl start mongod
sudo systemctl enable mongod

4、下载 YApi

从 YApi 的 GitHub 仓库克隆代码:

git clone https://github.com/YMFE/yapi.git
cd yapi

5、安装依赖

进入 YApi 目录,使用 npm 安装依赖:

npm install registry=https://registry.npm.taobao.org

6、配置 YApi

编辑 config.json 文件,设置数据库连接信息等:

{
  "port": "3000",
  "adminAccount": {
    "username": "admin@admin.com",
    "password": "hello@world"
  },
  "db": {
    "servername": "localhost",
    "DATABASE": "yapi",
    "port": 27017,
    "user": "yapi",
    "pass": "yapi123"
  }
}

7、初始化 YApi

运行以下命令初始化 YApi:

./cli/cli init

8、启动 YApi

运行以下命令启动 YApi:

npm run start

9、访问 YApi

在浏览器中访问 http://服务器IP:3000,使用管理员账号登录 YApi。

0