windows rap环境搭建

 Rap是阿里巴巴开源mock工具,试用了下,功能还比较强大,闲着无事,装了个windows版本。

工具:xampp安装包,redis 3.0 ,rap.war

1.为了安装方便,我们使用xampp安装包,安装过程比较简单,只要下一步便可

windows rap环境搭建

无法启动apache,需要检查一下端口是否被占用,点netstat 看看默认的80端口和SSL端口是否被占用

windows rap环境搭建

若占用打开config文件httpd.conf,httpd-ssl.conf

分到找到Listen 80,Listen443 修改为Listen82,Listen444保存。

2.安装redis,官网没有exe安装版,可以到https://github.com/ServiceStack/redis-windows下载

(1)下载安装

解压其中一个版本windows rap环境搭建

我们选择redis64-3.0.501解压,拷贝到C盘根目录下,重命名为redis

windows rap环境搭建

(2)启动

cmd切换到redis 目录下执行:redis-server redis.windows.conf

windows rap环境搭建

出现以上界面redis启动成功。

(3)测试redis 

  新开启一个cmd窗口,切换到redis目录下执行:redis-cli.exe -h 127.0.0.1 -p 6379

set myKey rap回车

get myKey回车,顺利取出值rap

windows rap环境搭建

3.下载RAP war包

(1)下载

https://github.com/thx/RAP/releases

windows rap环境搭建

(2)开启xampp,启动apche,mysql,tomcat

删除xampp\tomcat\webapps\下ROOT文件夹

把下载下来的RAP包改名为ROOT.WAR放在该目录下

会自动解压成ROOT文件夹

windows rap环境搭建

4.创建数据库

(1)通过phpmyadmin访问mysql数据库:

点击 admin便可,注意端口号要改成apche中修改后的,笔者apache改为82,用一下地址访问

http://localhost:82/phpmyadmin/

windows rap环境搭建

https://github.com/thx/RAP/blob/release/src/main/resources/database/initialize.sql

把sql脚本拷贝到phpmyadmin sql中

执行sql ,会生成rap_db库

windows rap环境搭建

(2)创建用户admin

windows rap环境搭建

windows rap环境搭建

 

5.修改

tomcat\webapps\ROOT\WEB-INF\classes下 config.properties文件

windows rap环境搭建

username,password 都改成admin,

6.打开http://localhost:8080/,注册用户便可使用。

windows rap环境搭建

7.使用参见教程

http://thx.github.io/RAP/study.html

 

上一篇:PMS 修改禅道默认首页元素及展示


下一篇:xampp和冰蝎结合使用